diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:00 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:00 -0600 |
commit | 6ade7e598a18691f3f92471c4441d856b3ac54dc (patch) | |
tree | ca18ed733e273279bab574978806068e506c241a /qt/ScintillaQt.cpp | |
parent | 5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170 (diff) | |
download | tqscintilla-6ade7e598a18691f3f92471c4441d856b3ac54dc.tar.gz tqscintilla-6ade7e598a18691f3f92471c4441d856b3ac54dc.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170.
Diffstat (limited to 'qt/ScintillaQt.cpp')
-rw-r--r-- | qt/ScintillaQt.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qt/ScintillaQt.cpp b/qt/ScintillaQt.cpp index e626d17..322f300 100644 --- a/qt/ScintillaQt.cpp +++ b/qt/ScintillaQt.cpp @@ -25,7 +25,7 @@ #include <tqpopupmenu.h> #include <tqstring.h> #include <tqtimer.h> -#include <clipboard.h> +#include <tqclipboard.h> #include <tqdragobject.h> #include <tqpainter.h> @@ -446,7 +446,7 @@ TQString ScintillaTQt::textRange(const SelectionText *text) // Copy the selected text to the clipboard. void ScintillaTQt::CopyToClipboard(const SelectionText &selectedText) { - TQApplication::clipboard() -> setText(textRange(&selectedText)); + TQApplication::tqclipboard() -> setText(textRange(&selectedText)); } @@ -466,7 +466,7 @@ void ScintillaTQt::Copy() // Implement paste. void ScintillaTQt::Paste() { - TQString str = TQApplication::clipboard() -> text(); + TQString str = TQApplication::tqclipboard() -> text(); if (str.isEmpty()) return; @@ -607,7 +607,7 @@ void ScintillaTQt::ClaimSelection() if (isSel) { - TQClipboard *cb = TQApplication::clipboard(); + TQClipboard *cb = TQApplication::tqclipboard(); // If we support X11 style selection then make it available // now. @@ -683,7 +683,7 @@ void ScintillaTQt::paintEvent(TQPaintEvent *pe) delete sw; // If the painting area was insufficient to cover the new style - // or brace highlight positions then repaint the whole thing. + // or brace highlight positions then tqrepaint the whole thing. if (paintState == paintAbandoned) PWindow(wMain) -> update(); } |