By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1675
Collapse All | Expand All

(-)a/amarok/src/actionclasses.cpp (-1 / +7 lines)
Lines 211-216 PlayPauseAction::PlayPauseAction( TDEActionCollection *ac ) Link Here
211
        : TDEToggleAction( i18n( "Play/Pause" ), 0, ac, "play_pause" )
211
        : TDEToggleAction( i18n( "Play/Pause" ), 0, ac, "play_pause" )
212
        , EngineObserver( EngineController::instance() )
212
        , EngineObserver( EngineController::instance() )
213
{
213
{
214
    // We have our own thread manager
215
    disableThreadPostedEvents(true);
216
214
    engineStateChanged( EngineController::engine()->state() );
217
    engineStateChanged( EngineController::engine()->state() );
215
218
216
    connect( this, TQT_SIGNAL(activated()), EngineController::instance(), TQT_SLOT(playPause()) );
219
    connect( this, TQT_SIGNAL(activated()), EngineController::instance(), TQT_SLOT(playPause()) );
Lines 422-428 VolumeAction::VolumeAction( TDEActionCollection *ac ) Link Here
422
        : TDEAction( i18n( "Volume" ), 0, ac, "toolbar_volume" )
425
        : TDEAction( i18n( "Volume" ), 0, ac, "toolbar_volume" )
423
        , EngineObserver( EngineController::instance() )
426
        , EngineObserver( EngineController::instance() )
424
        , m_slider( 0 ) //is TQGuardedPtr
427
        , m_slider( 0 ) //is TQGuardedPtr
425
{}
428
{
429
    // We have our own thread manager
430
    disableThreadPostedEvents(true);
431
}
426
432
427
int
433
int
428
VolumeAction::plug( TQWidget *w, int index )
434
VolumeAction::plug( TQWidget *w, int index )
(-)a/amarok/src/browserbar.cpp (+3 lines)
Lines 71-76 BrowserBar::BrowserBar( TQWidget *parent ) Link Here
71
        , m_lastIndex( -1 )
71
        , m_lastIndex( -1 )
72
        , m_mapper( new TQSignalMapper( TQT_TQOBJECT(this) ) )
72
        , m_mapper( new TQSignalMapper( TQT_TQOBJECT(this) ) )
73
{
73
{
74
    // We have our own thread manager
75
    disableThreadPostedEvents(true);
76
74
    m_tabManagementButton = new TQPushButton( SmallIconSet(Amarok::icon( "configure" )), 0, this, "tab_managment_button" );
77
    m_tabManagementButton = new TQPushButton( SmallIconSet(Amarok::icon( "configure" )), 0, this, "tab_managment_button" );
75
    connect (m_tabManagementButton, TQT_SIGNAL(clicked()), TQT_SLOT(showBrowserSelectionMenu()));
78
    connect (m_tabManagementButton, TQT_SIGNAL(clicked()), TQT_SLOT(showBrowserSelectionMenu()));
76
    m_tabManagementButton->setIsMenuButton ( true ); //deprecated, but since I cannot add menu directly to button it is needed.
79
    m_tabManagementButton->setIsMenuButton ( true ); //deprecated, but since I cannot add menu directly to button it is needed.
(-)a/amarok/src/contextbrowser.cpp (+3 lines)
Lines 210-215 ContextBrowser::ContextBrowser( const char *name ) Link Here
210
    s_instance = this;
210
    s_instance = this;
211
    s_wikiLocale = AmarokConfig::wikipediaLocale();
211
    s_wikiLocale = AmarokConfig::wikipediaLocale();
212
212
213
    // We have our own thread manager
214
    disableThreadPostedEvents(true);
215
213
    m_contextTab = new TQVBox(this, "context_tab");
216
    m_contextTab = new TQVBox(this, "context_tab");
214
217
215
    m_currentTrackPage = new HTMLView( m_contextTab, "current_track_page", true /* DNDEnabled */,
218
    m_currentTrackPage = new HTMLView( m_contextTab, "current_track_page", true /* DNDEnabled */,
(-)a/amarok/src/database_refactor/collectiondb.cpp (+3 lines)
Lines 69-74 CollectionDB::CollectionDB() Link Here
69
{
69
{
70
    DEBUG_BLOCK
70
    DEBUG_BLOCK
71
71
72
    // We have our own thread manager
73
    disableThreadPostedEvents(true);
74
72
    // create cover dir, if it doesn't exist.
75
    // create cover dir, if it doesn't exist.
73
    if( !m_coverDir.exists( "albumcovers", false ) )
76
    if( !m_coverDir.exists( "albumcovers", false ) )
74
        m_coverDir.mkdir( "albumcovers", false );
77
        m_coverDir.mkdir( "albumcovers", false );
(-)a/amarok/src/playerwindow.cpp (+3 lines)
Lines 99-104 PlayerWidget::PlayerWidget( TQWidget *parent, const char *name, bool enablePlayl Link Here
99
    , m_minusPixmap( getPNG( "time_minus" ) )
99
    , m_minusPixmap( getPNG( "time_minus" ) )
100
    , m_pAnalyzer( 0 )
100
    , m_pAnalyzer( 0 )
101
{
101
{
102
    // We have our own thread manager
103
    disableThreadPostedEvents(true);
104
102
    //the createWidget template function is used here
105
    //the createWidget template function is used here
103
    //createWidget just creates a widget which has it's geometry set too
106
    //createWidget just creates a widget which has it's geometry set too
104
107
(-)a/amarok/src/playlist.cpp (+3 lines)
Lines 206-211 Playlist::Playlist( TQWidget *parent ) Link Here
206
{
206
{
207
    s_instance = this;
207
    s_instance = this;
208
208
209
    // We have our own thread manager
210
    disableThreadPostedEvents(true);
211
209
    connect( CollectionDB::instance(), TQT_SIGNAL(fileMoved(const TQString&,
212
    connect( CollectionDB::instance(), TQT_SIGNAL(fileMoved(const TQString&,
210
            const TQString&, const TQString&)), TQT_SLOT(updateEntriesUrl(const TQString&,
213
            const TQString&, const TQString&)), TQT_SLOT(updateEntriesUrl(const TQString&,
211
            const TQString&, const TQString&)) );
214
            const TQString&, const TQString&)) );
(-)a/amarok/src/scriptmanager.cpp (+3 lines)
Lines 143-148 ScriptManager::ScriptManager( TQWidget *parent, const char *name ) Link Here
143
143
144
    s_instance = this;
144
    s_instance = this;
145
145
146
    // We have our own thread manager
147
    disableThreadPostedEvents(true);
148
146
    kapp->setTopWidget( this );
149
    kapp->setTopWidget( this );
147
    setCaption( kapp->makeStdCaption( i18n( "Script Manager" ) ) );
150
    setCaption( kapp->makeStdCaption( i18n( "Script Manager" ) ) );
148
151
(-)a/amarok/src/scrobbler.cpp (-1 / +4 lines)
Lines 53-59 Scrobbler::Scrobbler() Link Here
53
    , m_startPos( 0 )
53
    , m_startPos( 0 )
54
    , m_submitter( new ScrobblerSubmitter() )
54
    , m_submitter( new ScrobblerSubmitter() )
55
    , m_item( new SubmitItem() )
55
    , m_item( new SubmitItem() )
56
{}
56
{
57
    // We have our own thread manager
58
    disableThreadPostedEvents(true);
59
}
57
60
58
61
59
Scrobbler::~Scrobbler()
62
Scrobbler::~Scrobbler()
(-)a/amarok/src/statusbar/statusbar.cpp (-1 / +4 lines)
Lines 63-68 StatusBar::StatusBar( TQWidget *parent, const char *name ) Link Here
63
{
63
{
64
    s_instance = this; //static member
64
    s_instance = this; //static member
65
65
66
    // We have our own thread manager
67
    disableThreadPostedEvents(true);
68
66
    // total songs count
69
    // total songs count
67
    m_itemCountLabel = new TQLabel( this );
70
    m_itemCountLabel = new TQLabel( this );
68
    m_itemCountLabel->setAlignment( TQt::AlignCenter );
71
    m_itemCountLabel->setAlignment( TQt::AlignCenter );
Lines 108-114 StatusBar::StatusBar( TQWidget *parent, const char *name ) Link Here
108
111
109
    if( !AmarokConfig::leftTimeDisplayEnabled() )
112
    if( !AmarokConfig::leftTimeDisplayEnabled() )
110
        m_timeLabel->hide();
113
        m_timeLabel->hide();
111
 
114
112
    connect( m_slider, TQT_SIGNAL(sliderReleased( int )), EngineController::instance(), TQT_SLOT(seek( int )) );
115
    connect( m_slider, TQT_SIGNAL(sliderReleased( int )), EngineController::instance(), TQT_SLOT(seek( int )) );
113
    connect( m_slider, TQT_SIGNAL(valueChanged( int )), TQT_SLOT(drawTimeDisplay( int )) );
116
    connect( m_slider, TQT_SIGNAL(valueChanged( int )), TQT_SLOT(drawTimeDisplay( int )) );
114
117
(-)a/amarok/src/systray.cpp (+3 lines)
Lines 41-46 Amarok::TrayIcon::TrayIcon( TQWidget *playerWidget ) Link Here
41
        , overlayVisible( false )
41
        , overlayVisible( false )
42
        , m_lastFmMode( false )
42
        , m_lastFmMode( false )
43
{
43
{
44
    // We have our own thread manager
45
    disableThreadPostedEvents(true);
46
44
    TDEActionCollection* const ac = Amarok::actionCollection();
47
    TDEActionCollection* const ac = Amarok::actionCollection();
45
48
46
    setAcceptDrops( true );
49
    setAcceptDrops( true );

Return to bug 1675