summaryrefslogtreecommitdiffstats
path: root/qt/ScintillaQt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt/ScintillaQt.cpp')
-rw-r--r--qt/ScintillaQt.cpp10
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();
}