summaryrefslogtreecommitdiffstats
path: root/kexi/kexiutils
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 23:57:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 23:57:47 -0600
commit6ec5cc8d82b29c330def669cf20534cadd2cf29e (patch)
tree7e66b929b5455837f22ea54ed91fc9af6f64f7bf /kexi/kexiutils
parent68a4fdfd2c2b70a7c22c4c6d6c916e604a0efac2 (diff)
downloadkoffice-6ec5cc8d82b29c330def669cf20534cadd2cf29e.tar.gz
koffice-6ec5cc8d82b29c330def669cf20534cadd2cf29e.zip
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'kexi/kexiutils')
-rw-r--r--kexi/kexiutils/utils.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/kexiutils/utils.h b/kexi/kexiutils/utils.h
index 81e4f41e..8b832061 100644
--- a/kexi/kexiutils/utils.h
+++ b/kexi/kexiutils/utils.h
@@ -87,12 +87,12 @@ namespace KexiUtils
}
/*! Sets "wait" cursor with 1 second delay (or 0 seconds if noDelay is true).
- Does nothing if the application has no GUI enabled. (see KApplication::guiEnabled()) */
+ Does nothing if the application has no GUI enabled. (see TDEApplication::guiEnabled()) */
KEXIUTILS_EXPORT void setWaitCursor(bool noDelay = false);
/*! Remove "wait" cursor previously set with \a setWaitCursor(),
even if it's not yet visible.
- Does nothing if the application has no GUI enabled. (see KApplication::guiEnabled()) */
+ Does nothing if the application has no GUI enabled. (see TDEApplication::guiEnabled()) */
KEXIUTILS_EXPORT void removeWaitCursor();
/*! Helper class. Allocate it in your code block as follows:
@@ -101,7 +101,7 @@ namespace KexiUtils
</code>
.. and wait cursor will be visible (with one second delay) until you're in this block, without
a need to call removeWaitCursor() before exiting the block.
- Does nothing if the application has no GUI enabled. (see KApplication::guiEnabled()) */
+ Does nothing if the application has no GUI enabled. (see TDEApplication::guiEnabled()) */
class KEXIUTILS_EXPORT WaitCursor
{
public:
@@ -116,7 +116,7 @@ namespace KexiUtils
.. and the wait cursor will be hidden unless you leave this block, without
a need to call setWaitCursor() before exiting the block. After leaving the codee block,
the cursor will be visible again, if it was visible before creating the WaitCursorRemover object.
- Does nothing if the application has no GUI enabled. (see KApplication::guiEnabled()) */
+ Does nothing if the application has no GUI enabled. (see TDEApplication::guiEnabled()) */
class KEXIUTILS_EXPORT WaitCursorRemover
{
public: