diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:07:15 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:07:15 +0100 |
commit | 6e55b23a74ff9702218eaedc1c4e995e4f081aa3 (patch) | |
tree | eb32b27358b7adb674e91fe667b24299882cc1f2 /konq-plugins/sidebar/mediaplayer | |
parent | 064539d8a51f8f8ed4119b5286e077620a5ac8c5 (diff) | |
download | tdeaddons-6e55b23a74ff9702218eaedc1c4e995e4f081aa3.tar.gz tdeaddons-6e55b23a74ff9702218eaedc1c4e995e4f081aa3.zip |
Fix incorrectly renamed strings
Diffstat (limited to 'konq-plugins/sidebar/mediaplayer')
-rw-r--r-- | konq-plugins/sidebar/mediaplayer/controls.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/konq-plugins/sidebar/mediaplayer/controls.cpp b/konq-plugins/sidebar/mediaplayer/controls.cpp index 49c6d1f..ba5a504 100644 --- a/konq-plugins/sidebar/mediaplayer/controls.cpp +++ b/konq-plugins/sidebar/mediaplayer/controls.cpp @@ -89,7 +89,7 @@ int SliderAction::plug( TQWidget *w, int index ) TDEToolBar *toolBar = (TDEToolBar *)w; int id = TDEAction::getToolButtonID(); - + //Create it. m_slider=new L33tSlider(0, 1000, 100, 0,Qt::Horizontal, toolBar); m_slider->setMinimumWidth(10); @@ -102,7 +102,7 @@ int SliderAction::plug( TQWidget *w, int index ) if (w->inherits( "TDEToolBar" )) connect(toolBar, TQT_SIGNAL(moved(TDEToolBar::BarPosition)), this, TQT_SLOT(toolbarMoved(TDEToolBar::BarPosition))); - + emit plugged(); return containerCount() - 1; @@ -111,16 +111,16 @@ int SliderAction::plug( TQWidget *w, int index ) void SliderAction::toolbarMoved(TDEToolBar::BarPosition) { // I wish this worked :) -return; +return; /* if (pos == TDEToolBar::Left || pos == TDEToolBar::Right) { - m_slider->setOrientationQt::Vertical); + m_slider->setOrientation(Qt::Vertical); m_slider->setFixedWidth(m_slider->height()); } else { - m_slider->setOrientationQt::Horizontal); + m_slider->setOrientation(Qt::Horizontal); m_slider->resize(m_slider->height(), m_slider->height()); } */ |