summaryrefslogtreecommitdiffstats
path: root/src/sources/source.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:04:42 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:04:42 -0600
commitaab6b7485c28bc6ee2805a389c2560cda1d24d21 (patch)
tree20635bab0290ad55a667c2f7ca2b6e516b7b68a7 /src/sources/source.cpp
parent5599badf00624db6b9cecd7a00971f8c2387b73c (diff)
downloadkima-aab6b7485c28bc6ee2805a389c2560cda1d24d21.tar.gz
kima-aab6b7485c28bc6ee2805a389c2560cda1d24d21.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/sources/source.cpp')
-rw-r--r--src/sources/source.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sources/source.cpp b/src/sources/source.cpp
index 20885b0..18d801c 100644
--- a/src/sources/source.cpp
+++ b/src/sources/source.cpp
@@ -107,7 +107,7 @@ TQWidget* Source::createPrefs(TQWidget* inParent){
createSubPrefs(mSourcePrefs);
// add bottom vspacer
- mSourcePrefs->tqlayout()->addItem(new TQSpacerItem(0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding) );
+ mSourcePrefs->layout()->addItem(new TQSpacerItem(0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding) );
updatePrefsGUI(); // fill the prefs gui
}
@@ -140,7 +140,7 @@ void Source::setPrefsWidgetsEnabled(bool isEnabled, bool isShownOnApplet){
void Source::addPrefs(TQWidget* inParent){
if(inParent != NULL)
- mSourcePrefs->tqlayout()->add(inParent);
+ mSourcePrefs->layout()->add(inParent);
}
void Source::applyPrefs(){