summaryrefslogtreecommitdiffstats
path: root/qt/ScintillaQt.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:08:48 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:08:48 -0600
commitb3566a6c6754f013b55063c28b90995be612da96 (patch)
treedd590262fefe39114300e6d376b68df0b435c0f2 /qt/ScintillaQt.cpp
parent1aef904f94a86fecbc71888bc94a790ff36f0403 (diff)
downloadtqscintilla-b3566a6c6754f013b55063c28b90995be612da96.tar.gz
tqscintilla-b3566a6c6754f013b55063c28b90995be612da96.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'qt/ScintillaQt.cpp')
-rw-r--r--qt/ScintillaQt.cpp6
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.