summaryrefslogtreecommitdiffstats
path: root/knights/setpageaudio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/setpageaudio.cpp')
-rw-r--r--knights/setpageaudio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/knights/setpageaudio.cpp b/knights/setpageaudio.cpp
index 7016ecf..8812d3d 100644
--- a/knights/setpageaudio.cpp
+++ b/knights/setpageaudio.cpp
@@ -32,7 +32,7 @@ setPageAudio::setPageAudio(TQWidget *parent, resource *Rsrc ) : TQVBoxLayout(par
this, TQT_SLOT( slot_enableAudio(bool) ) );
GROUP_Theme = new TQGroupBox( 1,
- Qt::Vertical,
+ TQt::Vertical,
i18n( "Audio Themes" ),
parent );
addWidget( GROUP_Theme );
@@ -44,9 +44,9 @@ setPageAudio::setPageAudio(TQWidget *parent, resource *Rsrc ) : TQVBoxLayout(par
BOX_Main = new TQHBox( parent );
addWidget( BOX_Main );
- GROUP_Volume = new TQGroupBox( 3, Qt::Vertical, i18n( "Volume" ), BOX_Main );
+ GROUP_Volume = new TQGroupBox( 3, TQt::Vertical, i18n( "Volume" ), BOX_Main );
Vol_Max = new TQLabel( i18n( "Maximum" ), GROUP_Volume );
- Current_Volume = new TQSlider ( 0, 100, 10, Resource->Audio_Volume, Qt::Vertical, GROUP_Volume );
+ Current_Volume = new TQSlider ( 0, 100, 10, Resource->Audio_Volume, TQt::Vertical, GROUP_Volume );
connect( Current_Volume, TQT_SIGNAL( valueChanged(int) ), this, TQT_SLOT( slot_currentVolume(int) ) );
Current_Volume->setTickmarks( TQSlider::Right );
Vol_Min = new TQLabel( i18n( "Minimum" ), GROUP_Volume );