summaryrefslogtreecommitdiffstats
path: root/kword/KWCanvas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kword/KWCanvas.cpp')
-rw-r--r--kword/KWCanvas.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kword/KWCanvas.cpp b/kword/KWCanvas.cpp
index 7dc7b96a..3bf00e2b 100644
--- a/kword/KWCanvas.cpp
+++ b/kword/KWCanvas.cpp
@@ -55,7 +55,7 @@
#include <kcursor.h>
#include <kdebug.h>
#include <kmessagebox.h>
-#include <kmultipledrag.h>
+#include <tdemultipledrag.h>
#include <kurl.h>
#include <kurldrag.h>
#include <kio/netaccess.h>
@@ -1516,7 +1516,7 @@ void KWCanvas::contentsDropEvent( TQDropEvent *e )
} else if ( KURLDrag::canDecode( e ) ) {
// TODO ask (with a popupmenu) between inserting a link and inserting the contents
- // TODO fix khtml to export images when dragging an image+link (as it does when using "Copy")
+ // TODO fix tdehtml to export images when dragging an image+link (as it does when using "Copy")
KURL::List lst;
KURLDrag::decode( e, lst );
@@ -1590,7 +1590,7 @@ void KWCanvas::doAutoScroll()
return;
}
- // This code comes from khtml
+ // This code comes from tdehtml
TQPoint pos( mapFromGlobal( TQCursor::pos() ) );
pos = TQPoint(pos.x() - viewport()->x(), pos.y() - viewport()->y());