X-Git-Url: https://ruin.nu/git/?p=hbs.git;a=blobdiff_plain;f=bs%2Fmain.cpp;h=e91959284000784b0cf6bdc33185a7863f00f5a5;hp=ea8ef3f81170e94afac3b27352e16614921391ca;hb=1bb3da557a983d00ec3ff37ff94152e6f109ee4a;hpb=ec7ebf4a9acd1d7b7e4e7967c4afa94300ed5ff9 diff --git a/bs/main.cpp b/bs/main.cpp index ea8ef3f..e919592 100644 --- a/bs/main.cpp +++ b/bs/main.cpp @@ -20,7 +20,7 @@ #include #include "../config.h" -#include "bc.h" +#include "bs.h" int main(int argc, char *argv[]) { @@ -32,13 +32,13 @@ int main(int argc, char *argv[]) /* uncomment the following line, if you want a Windows 95 look*/ // a.setStyle(WindowsStyle); //a.setStyle(s); - BcApp *bc=new BcApp(); - a.setMainWidget(bc); + BSApp *bs=new BSApp(); + a.setMainWidget(bs); - bc->setCaption("HÃ¥rvalens BattleCalc" VERSION); + bs->setCaption("Harv's BattleSystem" VERSION); //eonsl->showMaximized(); - bc->resize(800,600); - bc->show(); + bs->resize(800,600); + bs->show(); return a.exec(); }