From 69d87202cb139ffe9e4b3ce92e434523b7b09b64 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 17 Oct 2018 19:46:30 +0900 Subject: QT_NO_* -> TQT_NO_* renaming. Signed-off-by: Michele Calgaro --- doc/html/showimg-example.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/showimg-example.html') diff --git a/doc/html/showimg-example.html b/doc/html/showimg-example.html index fd1cda853..91a34091b 100644 --- a/doc/html/showimg-example.html +++ b/doc/html/showimg-example.html @@ -735,14 +735,14 @@ void ImageViewer::rot180() void ImageViewer::copy() { -#ifndef QT_NO_MIMECLIPBOARD +#ifndef TQT_NO_MIMECLIPBOARD TQApplication::clipboard()->setImage(image); // Less information loss #endif } void ImageViewer::paste() { -#ifndef QT_NO_MIMECLIPBOARD +#ifndef TQT_NO_MIMECLIPBOARD TQImage p = TQApplication::clipboard()->image(); if ( !p.isNull() ) { filename = "pasted"; -- cgit v1.2.1