summaryrefslogtreecommitdiffstats
path: root/kresources
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-07 21:19:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-07 21:19:16 -0600
commit29d4a9cebb53f0220f7cf63f95ca8cbfd0f28793 (patch)
treeca0e5d7b60a4dd9a3a6d6bd5d530d2567c556464 /kresources
parent8c197c9946e3b3a9f0bf716172087c37481c323b (diff)
downloadtdepim-29d4a9cebb53f0220f7cf63f95ca8cbfd0f28793.tar.gz
tdepim-29d4a9cebb53f0220f7cf63f95ca8cbfd0f28793.zip
Rename additional members for tqt3
Diffstat (limited to 'kresources')
-rw-r--r--kresources/lib/kcal_resourcegroupwarebase.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kresources/lib/kcal_resourcegroupwarebase.cpp b/kresources/lib/kcal_resourcegroupwarebase.cpp
index bae91bf6..d52e0eab 100644
--- a/kresources/lib/kcal_resourcegroupwarebase.cpp
+++ b/kresources/lib/kcal_resourcegroupwarebase.cpp
@@ -211,16 +211,16 @@ bool ResourceGroupwareBase::doOpen()
// Copyright (C) 1998 Matthias Ettrich (ettrich@kde.org)
// Copyright (C) 1999 David Faure (faure@kde.org)
// If a troll sees this, he kills me
-void qt_enter_modal( TQWidget *widget );
-void qt_leave_modal( TQWidget *widget );
+void tqt_enter_modal( TQWidget *widget );
+void tqt_leave_modal( TQWidget *widget );
void ResourceGroupwareBase::enter_loop()
{
TQWidget dummy(0,0,WType_Dialog | WShowModal);
dummy.setFocusPolicy( TQ_NoFocus );
- qt_enter_modal(&dummy);
+ tqt_enter_modal(&dummy);
tqApp->enter_loop();
- qt_leave_modal(&dummy);
+ tqt_leave_modal(&dummy);
}
// END:COPIED