diff options
author | Michele Calgaro <[email protected]> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/dnd.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/dnd.html')
-rw-r--r-- | doc/html/dnd.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/dnd.html b/doc/html/dnd.html index 5614b21a2..0fb3d2950 100644 --- a/doc/html/dnd.html +++ b/doc/html/dnd.html @@ -115,7 +115,7 @@ void MyWidget::dragEnterEvent(TQDragEnterEvent* event) void MyWidget::dropEvent(TQDropEvent* event) { <a href="tqimage.html">TQImage</a> image; - <a href="ntqstring.html">TQString</a> text; + <a href="tqstring.html">TQString</a> text; if ( TQImageDrag::<a href="tqimagedrag.html#decode">decode</a>(event, image) ) { insertImageAt(image, event->pos()); @@ -148,7 +148,7 @@ void MyWidget::copy() void MyWidget::paste() { - <a href="ntqstring.html">TQString</a> text; + <a href="tqstring.html">TQString</a> text; if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>(TQApplication::<a href="ntqapplication.html#clipboard">clipboard</a>()->data(), text) ) insertText( text ); } @@ -266,7 +266,7 @@ void MyEditor::startDrag() void MyEditor::dropEvent(TQDropEvent* event) { - <a href="ntqstring.html">TQString</a> text; + <a href="tqstring.html">TQString</a> text; if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>(event, text) ) { if ( event->source() == this && event->action() == TQDropEvent::Move ) { |