diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-02-15 15:35:47 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-02-15 15:35:47 +0100 |
commit | f7792e37654fb9d0509171d946d53e7697ad53e8 (patch) | |
tree | b96edcfceaa8695b81219402abb144038d3aea25 /src/main.cpp | |
parent | Renamed Application class files (diff) | |
download | rekonq-f7792e37654fb9d0509171d946d53e7697ad53e8.tar.xz |
BrowserApplication --> Application
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index e53eef3c..c3ac0c00 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,7 +19,7 @@ * ============================================================ */ -#include "browserapplication.h" +#include "application.h" #include <KAboutData> #include <KCmdLineArgs> @@ -56,7 +56,7 @@ int main(int argc, char **argv) KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); - BrowserApplication app(args, "rekonq"); + Application app(args, "rekonq"); if (!app.isTheOnlyBrowser()) return 0; app.newMainWindow(); |