diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:32:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:32:04 +0900 |
commit | 5efc277625507809813e82005f7e47f004c666b6 (patch) | |
tree | 52282f27d3856e18ad12308e7881e840f0a96047 /src/projects/k3baudiotrackplayer.cpp | |
parent | 95a45a4f4fadd0054cc11f4f2f57da17d81c7bdd (diff) | |
download | k3b-5efc277625507809813e82005f7e47f004c666b6.tar.gz k3b-5efc277625507809813e82005f7e47f004c666b6.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/projects/k3baudiotrackplayer.cpp')
-rw-r--r-- | src/projects/k3baudiotrackplayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projects/k3baudiotrackplayer.cpp b/src/projects/k3baudiotrackplayer.cpp index 2118791..e396e2e 100644 --- a/src/projects/k3baudiotrackplayer.cpp +++ b/src/projects/k3baudiotrackplayer.cpp @@ -105,7 +105,7 @@ K3bAudioTrackPlayer::K3bAudioTrackPlayer( K3bAudioDoc* doc, TQObject* parent, co d->actionCollection, "prev" ); - d->seekSlider = new TQSlider( 0, 100, 1, 0, Qt::Horizontal, 0, "audiotrackplayerslider" ); + d->seekSlider = new TQSlider( 0, 100, 1, 0, TQt::Horizontal, 0, "audiotrackplayerslider" ); connect( d->seekSlider, TQT_SIGNAL(sliderMoved(int)), this, TQT_SLOT(slotSeek(int)) ); // FIXME: maybe it's not such a good idea to use a KWidgetAction here since this way the player // can only be used once in one widget. If the action would always create a new slider we could plug |