summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/fronthelpers
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:01:18 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:01:18 -0600
commit44a28c50e84c12e283887ae790607c335bb54fa6 (patch)
tree18398549d601fdce9b473d208d239c8df3c52a4a /src/svnfrontend/fronthelpers
parent201e831d6d5b086b43d9f9dba0a0ae8c74e4f2a3 (diff)
downloadtdesvn-44a28c50e84c12e283887ae790607c335bb54fa6.tar.gz
tdesvn-44a28c50e84c12e283887ae790607c335bb54fa6.zip
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'src/svnfrontend/fronthelpers')
-rw-r--r--src/svnfrontend/fronthelpers/cursorstack.h4
-rw-r--r--src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/svnfrontend/fronthelpers/cursorstack.h b/src/svnfrontend/fronthelpers/cursorstack.h
index cadad9b..ba69612 100644
--- a/src/svnfrontend/fronthelpers/cursorstack.h
+++ b/src/svnfrontend/fronthelpers/cursorstack.h
@@ -41,7 +41,7 @@ public:
*/
CursorStack(TQt::CursorShape c = TQt::WaitCursor)
{
- KApplication::setOverrideCursor(TQCursor(c));
+ TDEApplication::setOverrideCursor(TQCursor(c));
}
//! Destructor.
/*!
@@ -49,7 +49,7 @@ public:
*/
~CursorStack()
{
- KApplication::restoreOverrideCursor();
+ TDEApplication::restoreOverrideCursor();
}
};
diff --git a/src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp b/src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp
index 7e5949b..e157153 100644
--- a/src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp
+++ b/src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp
@@ -50,7 +50,7 @@ void RevisionButtonImpl::askRevision()
Rangeinput_impl*rdlg;
int buttons = KDialogBase::Ok|KDialogBase::Cancel;
- KDialogBase * dlg = new KDialogBase(TQT_TQWIDGET(KApplication::activeModalWidget()),"Revinput",true,i18n("Select revision"),buttons);
+ KDialogBase * dlg = new KDialogBase(TQT_TQWIDGET(TDEApplication::activeModalWidget()),"Revinput",true,i18n("Select revision"),buttons);
if (!dlg) {
return;