diff options
author | Francois Andriot <francois.andriot@free.fr> | 2012-04-26 11:28:01 +0200 |
---|---|---|
committer | Francois Andriot <francois.andriot@free.fr> | 2012-04-26 11:28:01 +0200 |
commit | d56d039d95d14dfa39fb1e3630e508bf48982c49 (patch) | |
tree | 4ec8984845b893ab7409aaaedb2e69ac95e2b023 /redhat/applications/koffice/kexi-hide_hourglass-1.1.3-2.patch | |
parent | a513a89bebab63ea439e7f6090cf474c67a7a3b0 (diff) | |
download | tde-packaging-d56d039d95d14dfa39fb1e3630e508bf48982c49.tar.gz tde-packaging-d56d039d95d14dfa39fb1e3630e508bf48982c49.zip |
RHEL/Fedora: updates koffice 3.5.13
Diffstat (limited to 'redhat/applications/koffice/kexi-hide_hourglass-1.1.3-2.patch')
-rw-r--r-- | redhat/applications/koffice/kexi-hide_hourglass-1.1.3-2.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/redhat/applications/koffice/kexi-hide_hourglass-1.1.3-2.patch b/redhat/applications/koffice/kexi-hide_hourglass-1.1.3-2.patch new file mode 100644 index 000000000..eddfc24ce --- /dev/null +++ b/redhat/applications/koffice/kexi-hide_hourglass-1.1.3-2.patch @@ -0,0 +1,23 @@ +Index: kexi/kexiutils/utils.cpp +=================================================================== +--- kexi/kexiutils/utils.cpp (revision 716273) ++++ kexi/kexiutils/utils.cpp (working copy) +@@ -57,7 +57,7 @@ + TQApplication::restoreOverrideCursor(); + } + void DelayedCursorHandler::show() { +- TQApplication::setOverrideCursor( KCursor::waitCursor() ); ++ TQApplication::setOverrideCursor( KCursor::waitCursor(), true/*replace*/ ); + } + + DelayedCursorHandler _delayedCursorHandler; +@@ -89,7 +89,8 @@ + + WaitCursorRemover::~WaitCursorRemover() + { +- _delayedCursorHandler.start(true); ++ if (m_reactivateCursor) ++ _delayedCursorHandler.start(true); + } + + //-------------------------------------------------------------------------------- |