diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-15 19:15:16 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-15 19:15:16 +0000 |
commit | cc0ad49c75d6cf6b4e63eb8c6012afe55c1589f9 (patch) | |
tree | 2a29ccab4d3cea34b87bfcbc38e64a8e25d25bb0 /klipper/toplevel.cpp | |
parent | 107dd1f98367d07df7cbe2042786511e44706d3a (diff) | |
download | tdebase-cc0ad49c75d6cf6b4e63eb8c6012afe55c1589f9.tar.gz tdebase-cc0ad49c75d6cf6b4e63eb8c6012afe55c1589f9.zip |
Allow kdebase to (mostly) function correctly with TQt for Qt4
Fix kicker tackbar handling under Classic mode (thanks to Ilya Chernykh for the patch)
Fix a newly invalidated section of code under GCC 4.5.2 (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47723#c6)
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1220927 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'klipper/toplevel.cpp')
-rw-r--r-- | klipper/toplevel.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/klipper/toplevel.cpp b/klipper/toplevel.cpp index b91b5deb0..ce539f825 100644 --- a/klipper/toplevel.cpp +++ b/klipper/toplevel.cpp @@ -698,8 +698,8 @@ void KlipperWidget::slotClearClipboard() { Ignore lock( locklevel ); - clip->clear(QClipboard::Selection); - clip->clear(QClipboard::Clipboard); + clip->clear(TQClipboard::Selection); + clip->clear(TQClipboard::Clipboard); } @@ -712,11 +712,11 @@ TQString KlipperWidget::clipboardContents( bool * /*isSelection*/ ) #if 0 bool selection = true; - TQMimeSource* data = clip->data(QClipboard::Selection); + TQMimeSource* data = clip->data(TQClipboard::Selection); if ( data->serialNumber() == m_lastSelection ) { - TQString clipContents = clip->text(QClipboard::Clipboard); + TQString clipContents = clip->text(TQClipboard::Clipboard); if ( clipContents != m_lastClipboard ) { contents = clipContents; @@ -845,7 +845,7 @@ void KlipperWidget::checkClipData( bool selectionMode ) kdDebug() << "\nselectionMode=" << selectionMode << "\nserialNo=" << clip->data()->serialNumber() << " (sel,cli)=(" << m_lastSelection << "," << m_lastClipboard << ")" << "\nowning (sel,cli)=(" << clip->ownsSelection() << "," << clip->ownsClipboard() << ")" - << "\ntext=" << clip->text( selectionMode ? QClipboard::Selection : QClipboard::Clipboard) << endl; + << "\ntext=" << clip->text( selectionMode ? TQClipboard::Selection : TQClipboard::Clipboard) << endl; #endif #if 0 @@ -963,14 +963,14 @@ void KlipperWidget::setClipboard( const HistoryItem& item, int mode ) #ifdef NOSIY_KLIPPER kdDebug() << "Setting selection to <" << item.text() << ">" << endl; #endif - clip->setData( item.mimeSource(), QClipboard::Selection ); + clip->setData( item.mimeSource(), TQClipboard::Selection ); m_lastSelection = clip->data()->serialNumber(); } if ( mode & Clipboard ) { #ifdef NOSIY_KLIPPER kdDebug() << "Setting clipboard to <" << item.text() << ">" << endl; #endif - clip->setData( item.mimeSource(), QClipboard::Clipboard ); + clip->setData( item.mimeSource(), TQClipboard::Clipboard ); m_lastClipboard = clip->data()->serialNumber(); } @@ -1028,10 +1028,10 @@ bool KlipperWidget::ignoreClipboardChanges() const return false; } -// QClipboard uses qt_x_time as the timestamp for selection operations. +// TQClipboard uses qt_x_time as the timestamp for selection operations. // It is updated mainly from user actions, but Klipper polls the clipboard // without any user action triggering it, so qt_x_time may be old, -// which could possibly lead to QClipboard reporting empty clipboard. +// which could possibly lead to TQClipboard reporting empty clipboard. // Therefore, qt_x_time needs to be updated to current X server timestamp. // Call KApplication::updateUserTime() only from functions that are |