summaryrefslogtreecommitdiffstats
path: root/tdecore/kappdcopiface.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:21:02 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:21:02 -0600
commit8e7816b2f9f62a2df094c5b2a7aa5abb6bc1226a (patch)
tree19ff5ecf5e6b5168e5503677f18b85f3dfa91f95 /tdecore/kappdcopiface.h
parent5bca2e3e42d02f8fed9ffc399ea14f8a05694cb0 (diff)
downloadtdelibs-8e7816b2f9f62a2df094c5b2a7aa5abb6bc1226a.tar.gz
tdelibs-8e7816b2f9f62a2df094c5b2a7aa5abb6bc1226a.zip
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'tdecore/kappdcopiface.h')
-rw-r--r--tdecore/kappdcopiface.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/tdecore/kappdcopiface.h b/tdecore/kappdcopiface.h
index 187c9f5ae..164c8b115 100644
--- a/tdecore/kappdcopiface.h
+++ b/tdecore/kappdcopiface.h
@@ -26,12 +26,12 @@
#include <dcopref.h>
#include "tdelibs_export.h"
-class KApplication;
+class TDEApplication;
/**
-This is the main interface to the KApplication. This will provide a consistant
+This is the main interface to the TDEApplication. This will provide a consistant
dcop interface to all KDE applications that use it.
-@short DCOP interface to KApplication.
+@short DCOP interface to TDEApplication.
@author Ian Reinhart Geiser <geiseri@yahoo.com>
*/
class TDECORE_EXPORT KAppDCOPInterface : virtual public DCOPObject
@@ -41,10 +41,10 @@ K_DCOP
public:
/**
Construct a new interface object.
- @param theKapp - The parent KApplication object
+ @param theKapp - The parent TDEApplication object
that will provide us with the functional interface.
*/
- KAppDCOPInterface( KApplication * theKapp );
+ KAppDCOPInterface( TDEApplication * theKapp );
/**
Destructor
Cleans up the dcop connection.
@@ -65,14 +65,14 @@ k_dcop:
void updateUserTimestamp( ulong time );
/**
- Send a fake keypress to all KApplication instances
+ Send a fake keypress to all TDEApplication instances
For internal use in connecting insecure function keys to
KDE applications while the X keyboard is locked.
**/
void sendFakeKey( unsigned int keyCode);
private:
- KApplication *m_KApplication;
+ TDEApplication *m_TDEApplication;
};
#endif