]> ruin.nu Git - hbs.git/blobdiff - bs/bs.h
Changed lots of classnames from Bc to BS
[hbs.git] / bs / bs.h
diff --git a/bs/bs.h b/bs/bs.h
index f77c74b6ce03c06c3312c6acb62d0e37caf3b508..efdd22a9d703b5664d4ae6a115fa1735aaee0cf0 100644 (file)
--- a/bs/bs.h
+++ b/bs/bs.h
@@ -36,8 +36,8 @@
 #include <qpainter.h>
 
 // application specific includes
-#include "bcview.h"
-#include "bcdoc.h"
+#include "bsview.h"
+#include "bsdoc.h"
 
 /**
   * This Class is the base class for your application. It sets up the main
   * and statusbar. For the main view, an instance of class BcView is
   * created which creates your view.
   */
-class BcApp : public QMainWindow
+class BSApp : public QMainWindow
 {
   Q_OBJECT
   
   public:
     /** construtor */
-    BcApp();
+    BSApp();
     /** destructor */
-    ~BcApp();
+    ~BSApp();
     /** initializes all QActions of the application */
     void initActions();
     /** initMenuBar creates the menu_bar and inserts the menuitems */
@@ -110,11 +110,11 @@ class BcApp : public QMainWindow
      * you can create your view according to your application's needs by
      * changing the view class.
      */
-    BcView* view;
+    BSView* view;
     /** doc represents your actual document and is created only once. It keeps
      * information such as filename and does the serialization of your files.
      */
-    BcDoc *doc;
+    BSDoc *doc;
   
     /** file_menu contains all items of the menubar entry "File" */
     QPopupMenu *fileMenu;