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 --- examples/showimg/showimg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/showimg/showimg.cpp') diff --git a/examples/showimg/showimg.cpp b/examples/showimg/showimg.cpp index 579dbb514..52545f57e 100644 --- a/examples/showimg/showimg.cpp +++ b/examples/showimg/showimg.cpp @@ -597,14 +597,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