diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:49:11 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:49:11 -0600 |
commit | 83fbc82a101309e171089f0d5ed080f82a367345 (patch) | |
tree | c7b61083b6e2d4bfceaace9a7f018181ea36afec /kmix/viewsurround.cpp | |
parent | b248983f92b865ef74636ab5a673ae3a88f79c20 (diff) | |
download | tdemultimedia-83fbc82a101309e171089f0d5ed080f82a367345.tar.gz tdemultimedia-83fbc82a101309e171089f0d5ed080f82a367345.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kmix/viewsurround.cpp')
-rw-r--r-- | kmix/viewsurround.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmix/viewsurround.cpp b/kmix/viewsurround.cpp index 5b2ac99f..6a810c94 100644 --- a/kmix/viewsurround.cpp +++ b/kmix/viewsurround.cpp @@ -23,7 +23,7 @@ // TQt #include <tqlabel.h> -#include <tqlayout.h> +#include <layout.h> #include <tqwidget.h> // KDE @@ -154,7 +154,7 @@ TQWidget* ViewSurround::add(MixDevice *md) case MixDevice::SURROUND: case MixDevice::AC97: default: - // Add as slider to the tqlayout on the left side + // Add as slider to the layout on the left side _layoutSliders->add(mdw); break; } // switch(type) @@ -162,9 +162,9 @@ TQWidget* ViewSurround::add(MixDevice *md) return mdw; } -TQSize ViewSurround::tqsizeHint() const { - // kdDebug(67100) << "ViewSurround::tqsizeHint(): NewSize is " << _layoutMDW->tqsizeHint() << "\n"; - return( _layoutMDW->tqsizeHint() ); +TQSize ViewSurround::sizeHint() const { + // kdDebug(67100) << "ViewSurround::sizeHint(): NewSize is " << _layoutMDW->sizeHint() << "\n"; + return( _layoutMDW->sizeHint() ); } void ViewSurround::constructionFinished() { |