summaryrefslogtreecommitdiffstats
path: root/kooka/kocrocrad.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitbce8199ddac4feecdee9c094fb8f75863cfa9652 (patch)
treeb0521e39686b4b24960a9d83e72a9c09937a810c /kooka/kocrocrad.cpp
parent03d51915bf86a00c5953817c89976b62785bb5a1 (diff)
downloadtdegraphics-bce8199ddac4feecdee9c094fb8f75863cfa9652.tar.gz
tdegraphics-bce8199ddac4feecdee9c094fb8f75863cfa9652.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kooka/kocrocrad.cpp')
-rw-r--r--kooka/kocrocrad.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kooka/kocrocrad.cpp b/kooka/kocrocrad.cpp
index 31c3bc40..ff675231 100644
--- a/kooka/kocrocrad.cpp
+++ b/kooka/kocrocrad.cpp
@@ -92,7 +92,7 @@ TQString ocradDialog::ocrEngineDesc() const
}
-int ocradDialog::tqlayoutDetectionMode() const
+int ocradDialog::layoutDetectionMode() const
{
return m_layoutMode->currentItem();
}
@@ -131,8 +131,8 @@ EngineError ocradDialog::setupGui()
/** tqlayout detection button **/
conf->setGroup( CFG_GROUP_OCRAD );
- int tqlayoutDetect = conf->readNumEntry( CFG_OCRAD_LAYOUT_DETECTION, 0 );
- kdDebug(28000) << "Layout detection from config: " << tqlayoutDetect << endl;
+ int layoutDetect = conf->readNumEntry( CFG_OCRAD_LAYOUT_DETECTION, 0 );
+ kdDebug(28000) << "Layout detection from config: " << layoutDetect << endl;
(void) new KSeparator( KSeparator::HLine, page);
TQHBox *hb1 = new TQHBox(page);
@@ -142,7 +142,7 @@ EngineError ocradDialog::setupGui()
m_layoutMode->insertItem(i18n("No Layout Detection"), 0 );
m_layoutMode->insertItem(i18n("Column Detection"), 1 );
m_layoutMode->insertItem(i18n("Full Layout Detection"), 2);
- m_layoutMode->setCurrentItem(tqlayoutDetect);
+ m_layoutMode->setCurrentItem(layoutDetect);
/** stating the ocrad binary **/
(void) new KSeparator( KSeparator::HLine, page);