From 628b0bb74c3fc327efff8add9c73ada04b1cbea2 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 7 Jul 2024 13:06:00 +0900 Subject: Rename drag-n-drop nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/desktop-example.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/desktop-example.html') diff --git a/doc/html/desktop-example.html b/doc/html/desktop-example.html index d3b42c938..38ca90d74 100644 --- a/doc/html/desktop-example.html +++ b/doc/html/desktop-example.html @@ -53,8 +53,8 @@ any other. #include <ntqbitmap.h> #include <ntqpainter.h> #include <ntqapplication.h> -#include <ntqdropsite.h> -#include <ntqdragobject.h> +#include <tqdropsite.h> +#include <tqdragobject.h> #include <stdio.h> @@ -234,22 +234,22 @@ public: ~DesktopWidget(); void paintEvent( TQPaintEvent * ); - void dragEnterEvent( TQDragEnterEvent *e ) + void dragEnterEvent( TQDragEnterEvent *e ) { if ( TQImageDrag::canDecode(e) ) - e->accept(); + e->accept(); } - void dragLeaveEvent( TQDragLeaveEvent * ) + void dragLeaveEvent( TQDragLeaveEvent * ) { } - void dragMoveEvent( TQDragMoveEvent *e ) + void dragMoveEvent( TQDragMoveEvent *e ) { - e->accept(); + e->accept(); } - void dropEvent( TQDropEvent * e ) + void dropEvent( TQDropEvent * e ) { TQPixmap pmp; if ( TQImageDrag::decode( e, pmp ) ) { -- cgit v1.2.3