diff options
Diffstat (limited to 'qt/ScintillaQt.cpp')
-rw-r--r-- | qt/ScintillaQt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt/ScintillaQt.cpp b/qt/ScintillaQt.cpp index 355c245..e4c0559 100644 --- a/qt/ScintillaQt.cpp +++ b/qt/ScintillaQt.cpp @@ -446,7 +446,7 @@ TQString ScintillaTQt::textRange(const SelectionText *text) // Copy the selected text to the clipboard. void ScintillaTQt::CopyToClipboard(const SelectionText &selectedText) { - TQApplication::tqclipboard() -> setText(textRange(&selectedText)); + TQApplication::clipboard() -> setText(textRange(&selectedText)); } @@ -466,7 +466,7 @@ void ScintillaTQt::Copy() // Implement paste. void ScintillaTQt::Paste() { - TQString str = TQApplication::tqclipboard() -> text(); + TQString str = TQApplication::clipboard() -> text(); if (str.isEmpty()) return; @@ -607,7 +607,7 @@ void ScintillaTQt::ClaimSelection() if (isSel) { - TQClipboard *cb = TQApplication::tqclipboard(); + TQClipboard *cb = TQApplication::clipboard(); // If we support X11 style selection then make it available // now. |