summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-20 00:01:25 -0600
committerTimothy Pearson <[email protected]>2013-01-20 00:01:25 -0600
commit55a8cf1a391985f156641c202616f6524f7e005b (patch)
tree1b62db594767ea016df35e957b4ee59eb52503af /src
parent0e5bdd6a8bd27439624c8b4e9a3cf748ddc3e37a (diff)
downloadtellico-55a8cf1a391985f156641c202616f6524f7e005b.tar.gz
tellico-55a8cf1a391985f156641c202616f6524f7e005b.zip
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'src')
-rw-r--r--src/fetch/fetcher.h4
-rw-r--r--src/main.cpp2
-rw-r--r--src/mainwindow.h4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/fetch/fetcher.h b/src/fetch/fetcher.h
index c73a884..c0a1b21 100644
--- a/src/fetch/fetcher.h
+++ b/src/fetch/fetcher.h
@@ -17,7 +17,7 @@
#include "fetch.h"
#include "../datavectors.h"
-#include <kapplication.h> // for KApplication::random()
+#include <kapplication.h> // for TDEApplication::random()
#include <tqobject.h>
#include <tqstring.h>
@@ -137,7 +137,7 @@ private:
class SearchResult {
public:
SearchResult(Fetcher::Ptr f, const TQString& t, const TQString& d, const TQString& i)
- : uid(KApplication::random()), fetcher(f), title(t), desc(d), isbn(i) {}
+ : uid(TDEApplication::random()), fetcher(f), title(t), desc(d), isbn(i) {}
Data::EntryPtr fetchEntry();
uint uid;
Fetcher::Ptr fetcher;
diff --git a/src/main.cpp b/src/main.cpp
index e04e414..617d086 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -55,7 +55,7 @@ int main(int argc, char* argv[]) {
TDECmdLineArgs::init(argc, argv, &aboutData);
TDECmdLineArgs::addCmdLineOptions(options);
- KApplication app;
+ TDEApplication app;
if(app.isRestored()) {
RESTORE(Tellico::MainWindow);
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 9736e9e..a9b2ba4 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -65,7 +65,7 @@ namespace Tellico {
* for main window handling and supports full session management as well as
* using KActions.
* @see KMainWindow
- * @see KApplication
+ * @see TDEApplication
* @see KConfig
*
* @author Robby Stephenson
@@ -334,7 +334,7 @@ private:
/**
* Saves the window properties for each open window during session end to the
* session config file, including saving the currently opened file by a temporary
- * filename provided by KApplication.
+ * filename provided by TDEApplication.
* @see KMainWindow::saveProperties
*
* @param cfg The config class with the properties to restore