summaryrefslogtreecommitdiffstats
path: root/tdeprint
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:33 +0900
commit2e0398f755ab6af9557cc805e4f484bbf0c150f6 (patch)
tree712a40baf33c3b3488ab74f0a7240cfd87cef532 /tdeprint
parent8d88f31f74735c9580b7d374f709a22206d14982 (diff)
downloadtdelibs-2e0398f755ab6af9557cc805e4f484bbf0c150f6.tar.gz
tdelibs-2e0398f755ab6af9557cc805e4f484bbf0c150f6.zip
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeprint')
-rw-r--r--tdeprint/tests/drawdemo.cpp4
-rw-r--r--tdeprint/tests/helpwindow.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/tdeprint/tests/drawdemo.cpp b/tdeprint/tests/drawdemo.cpp
index 76226e200..e60aae845 100644
--- a/tdeprint/tests/drawdemo.cpp
+++ b/tdeprint/tests/drawdemo.cpp
@@ -176,7 +176,7 @@ DrawView::DrawView()
//
DrawView::~DrawView()
{
-#ifndef QT_NO_PRINTER
+#ifndef TQT_NO_PRINTER
delete printer;
#endif
}
@@ -208,7 +208,7 @@ void DrawView::drawIt( TQPainter *p )
void DrawView::printIt()
{
-#ifndef QT_NO_PRINTER
+#ifndef TQT_NO_PRINTER
if ( printer->setup( this ) ) {
TQPainter paint( printer );
drawIt( &paint );
diff --git a/tdeprint/tests/helpwindow.cpp b/tdeprint/tests/helpwindow.cpp
index 54d160c73..2f172acc0 100644
--- a/tdeprint/tests/helpwindow.cpp
+++ b/tdeprint/tests/helpwindow.cpp
@@ -227,7 +227,7 @@ void HelpWindow::aboutQt()
void HelpWindow::openFile()
{
-#ifndef QT_NO_FILEDIALOG
+#ifndef TQT_NO_FILEDIALOG
TQString fn = TQFileDialog::getOpenFileName( TQString::null, TQString::null, this );
if ( !fn.isEmpty() )
browser->setSource( fn );