X-Git-Url: https://ruin.nu/git/?p=hbs.git;a=blobdiff_plain;f=bs%2Fbs.h;h=efdd22a9d703b5664d4ae6a115fa1735aaee0cf0;hp=f77c74b6ce03c06c3312c6acb62d0e37caf3b508;hb=1bb3da557a983d00ec3ff37ff94152e6f109ee4a;hpb=ec7ebf4a9acd1d7b7e4e7967c4afa94300ed5ff9 diff --git a/bs/bs.h b/bs/bs.h index f77c74b..efdd22a 100644 --- a/bs/bs.h +++ b/bs/bs.h @@ -36,8 +36,8 @@ #include // 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 @@ -45,15 +45,15 @@ * 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;