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/application.h | |
parent | Renamed Application class files (diff) | |
download | rekonq-f7792e37654fb9d0509171d946d53e7697ad53e8.tar.xz |
BrowserApplication --> Application
Diffstat (limited to 'src/application.h')
-rw-r--r-- | src/application.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/application.h b/src/application.h index 9b47bfcc..05fc008e 100644 --- a/src/application.h +++ b/src/application.h @@ -2,7 +2,6 @@ * * This file is a part of the rekonq project * - * Copyright (C) 2007-2008 Trolltech ASA. All rights reserved * Copyright (C) 2008 by Andrea Diamantini <adjam7 at gmail dot com> * * @@ -19,8 +18,8 @@ * ============================================================ */ -#ifndef BROWSERAPPLICATION_H -#define BROWSERAPPLICATION_H +#ifndef REKONQ_APPLICATION_H +#define REKONQ_APPLICATION_H // KDE Includes #include <KApplication> @@ -43,14 +42,14 @@ class CookieJar; class HistoryManager; class NetworkAccessManager; -class BrowserApplication : public KApplication +class Application : public KApplication { Q_OBJECT public: - BrowserApplication(KCmdLineArgs*, const QString &); - ~BrowserApplication(); - static BrowserApplication *instance(); + Application(KCmdLineArgs*, const QString &); + ~Application(); + static Application *instance(); bool isTheOnlyBrowser() const; MainWindow *mainWindow(); @@ -86,5 +85,5 @@ private: mutable KIcon m_defaultIcon; }; -#endif // BROWSERAPPLICATION_H +#endif // REKONQ_APPLICATION_H |