Commit fa44c02f5294de7928093ccf36ab153c839365d7
Unbreak compilation with Qt 4.7: Don't initialize QStrings with ints.
| |   |
| 25 | 25 | using namespace AmarokAttica; |
| 26 | 26 | |
| 27 | 27 | KnowledgeBase::KnowledgeBase() |
| : m_id(0), |
| : m_id('0'), |
| 29 | 29 | m_contentId(0), |
| 30 | 30 | m_comments(0) |
| 31 | 31 | { |
| |   |
| 34 | 34 | DragPixmapItem::DragPixmapItem( QGraphicsItem* parent ) |
| 35 | 35 | : QGraphicsPixmapItem( parent ) |
| 36 | 36 | , m_dragPos( QPoint() ) |
| , m_url( 0 ) |
| , m_url( '0' ) |
| 38 | 38 | { |
| 39 | 39 | setAcceptDrops( true ); |
| 40 | 40 | setCursor( Qt::PointingHandCursor ); |
| |   |
| 35 | 35 | TextScrollingWidget::TextScrollingWidget( QGraphicsItem* parent ) |
| 36 | 36 | : QGraphicsTextItem( parent ) |
| 37 | 37 | , m_fm( 0 ) |
| , m_text( 0 ) |
| , m_text( '0' ) |
| 39 | 39 | , m_delta( 0 ) |
| 40 | 40 | , m_currentDelta( 0. ) |
| 41 | 41 | , m_animfor( 0 ) |
| |   |
| 136 | 136 | , m_id( 0 ) |
| 137 | 137 | , m_trackNumber( 0 ) |
| 138 | 138 | , m_length( 0 ) |
| , m_displayUrl( 0 ) |
| , m_playableUrl( 0 ) |
| , m_downloadableUrl( 0 ) |
| , m_displayUrl( '0' ) |
| , m_playableUrl( '0' ) |
| , m_downloadableUrl( '0' ) |
| 142 | 142 | , m_albumId( 0 ) |
| , m_albumName( 0 ) |
| , m_albumName( '0' ) |
| 144 | 144 | , m_artistId( 0 ) |
| , m_artistName( 0 ) |
| , m_artistName( '0' ) |
| 146 | 146 | , m_name( name ) |
| 147 | 147 | { |
| 148 | 148 | } |
| … | … | |
| 575 | 575 | , BookmarkThisProvider() |
| 576 | 576 | , m_id( 0 ) |
| 577 | 577 | , m_name( name ) |
| , m_description( 0 ) |
| , m_description( '0' ) |
| 579 | 579 | , m_tracks() |
| 580 | 580 | { |
| 581 | 581 | //nothing to do |
| … | … | |
| 685 | 685 | , m_isCompilation( false ) |
| 686 | 686 | , m_albumArtist( 0 ) |
| 687 | 687 | , m_artistId( 0 ) |
| , m_artistName( 0 ) |
| , m_artistName( '0' ) |
| 689 | 689 | { |
| 690 | 690 | //nothing to do |
| 691 | 691 | } |
| |   |
| 35 | 35 | : m_origPath( origPath ) |
| 36 | 36 | , m_tempSavePath() |
| 37 | 37 | , m_origRenamedSavePath() |
| , m_tempSaveDigest( 0 ) |
| , m_tempSaveDigest( '0' ) |
| 39 | 39 | , m_cleanupNeeded( false ) |
| 40 | 40 | , m_verbose( false ) |
| 41 | 41 | , m_prefix( "safefilesaver" ) |