diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:36:53 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:36:53 -0600 |
commit | 0ed6bc56f9167e115f14d18b4bc8ce18fb7674b6 (patch) | |
tree | bbf293d0f4a7d04626e2996263f985f13921869a /src/kmplayercontrolpanel.cpp | |
parent | 81ad3b51a1f061b0934426aaf339917f76c0cfc5 (diff) | |
download | kmplayer-0ed6bc56f9167e115f14d18b4bc8ce18fb7674b6.tar.gz kmplayer-0ed6bc56f9167e115f14d18b4bc8ce18fb7674b6.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/kmplayercontrolpanel.cpp')
-rw-r--r-- | src/kmplayercontrolpanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kmplayercontrolpanel.cpp b/src/kmplayercontrolpanel.cpp index 8973e89..cb2e884 100644 --- a/src/kmplayercontrolpanel.cpp +++ b/src/kmplayercontrolpanel.cpp @@ -306,7 +306,7 @@ void VolumeBar::setValue (int v) { if (m_value > 100) m_value = 100; TQToolTip::remove (this); TQToolTip::add (this, i18n ("Volume is %1").arg (m_value)); - tqrepaint (true); + repaint (true); emit volumeChanged (m_value); } |