summaryrefslogtreecommitdiffstats
path: root/ksim/ksimview.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
commit9b8c9f1f9e974ff0176108cfbd8852cd99ea68c8 (patch)
treecaa35876e85b220e4d7264ab93817956ea8e312d /ksim/ksimview.cpp
parentc3509de54b7ba51981f84c6981aa2ccae2f2bc2f (diff)
downloadtdeutils-9b8c9f1f9e974ff0176108cfbd8852cd99ea68c8.tar.gz
tdeutils-9b8c9f1f9e974ff0176108cfbd8852cd99ea68c8.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/kdeutils@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksim/ksimview.cpp')
-rw-r--r--ksim/ksimview.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ksim/ksimview.cpp b/ksim/ksimview.cpp
index b0b35b6..5624f54 100644
--- a/ksim/ksimview.cpp
+++ b/ksim/ksimview.cpp
@@ -150,7 +150,7 @@ KSim::MainView::MainView(KConfig *config,
addPlugins();
}
- connect(&m_tqmaskTimer, TQT_SIGNAL(timeout()), TQT_SLOT(slotMaskMainView()));
+ connect(&m_maskTimer, TQT_SIGNAL(timeout()), TQT_SLOT(slotMaskMainView()));
}
KSim::MainView::~MainView()
@@ -160,7 +160,7 @@ KSim::MainView::~MainView()
void KSim::MainView::show()
{
- tqmaskMainView();
+ maskMainView();
TQWidget::show();
}
@@ -207,10 +207,10 @@ const TQString &KSim::MainView::hostname() const
void KSim::MainView::slotMaskMainView()
{
- tqmaskMainView();
+ maskMainView();
}
-void KSim::MainView::tqmaskMainView()
+void KSim::MainView::maskMainView()
{
if (!m_topFrame->background()->tqmask() ||
!m_leftFrame->background()->tqmask() ||
@@ -228,7 +228,7 @@ void KSim::MainView::tqmaskMainView()
TQSize insideSize(m_pluginLayout->tqgeometry().size());
- // make a cleared bigrect where we can put our pixmap tqmasks on
+ // make a cleared bigrect where we can put our pixmap masks on
TQBitmap bigBitmap(tqtopLevelWidget()->size(), true);
// better return if our bitmap is null so we can avoid crashes
@@ -318,7 +318,7 @@ void KSim::MainView::reparseConfig(bool emitReload,
KSim::ThemeLoader::self().themeColours(this);
m_sysinfo->createView();
- tqmaskMainView();
+ maskMainView();
m_topLevel->reparse();
@@ -404,7 +404,7 @@ void KSim::MainView::preferences()
void KSim::MainView::resizeEvent(TQResizeEvent *re)
{
TQWidget::resizeEvent(re);
- m_tqmaskTimer.start(0, true);
+ m_maskTimer.start(0, true);
}
void KSim::MainView::paletteChange(const TQPalette &)