Commit fa44c02f5294de7928093ccf36ab153c839365d7

  • avatar
  • Eike Hein <sho @eike…in.com>
  • Sat Mar 13 17:25:53 CET 2010
Unbreak compilation with Qt 4.7: Don't initialize QStrings with ints.
  
2525using namespace AmarokAttica;
2626
2727KnowledgeBase::KnowledgeBase()
28 : m_id(0),
28 : m_id('0'),
2929 m_contentId(0),
3030 m_comments(0)
3131{
  
3434DragPixmapItem::DragPixmapItem( QGraphicsItem* parent )
3535 : QGraphicsPixmapItem( parent )
3636 , m_dragPos( QPoint() )
37 , m_url( 0 )
37 , m_url( '0' )
3838{
3939 setAcceptDrops( true );
4040 setCursor( Qt::PointingHandCursor );
  
3535TextScrollingWidget::TextScrollingWidget( QGraphicsItem* parent )
3636 : QGraphicsTextItem( parent )
3737 , m_fm( 0 )
38 , m_text( 0 )
38 , m_text( '0' )
3939 , m_delta( 0 )
4040 , m_currentDelta( 0. )
4141 , m_animfor( 0 )
  
136136 , m_id( 0 )
137137 , m_trackNumber( 0 )
138138 , m_length( 0 )
139 , m_displayUrl( 0 )
140 , m_playableUrl( 0 )
141 , m_downloadableUrl( 0 )
139 , m_displayUrl( '0' )
140 , m_playableUrl( '0' )
141 , m_downloadableUrl( '0' )
142142 , m_albumId( 0 )
143 , m_albumName( 0 )
143 , m_albumName( '0' )
144144 , m_artistId( 0 )
145 , m_artistName( 0 )
145 , m_artistName( '0' )
146146 , m_name( name )
147147{
148148}
575575 , BookmarkThisProvider()
576576 , m_id( 0 )
577577 , m_name( name )
578 , m_description( 0 )
578 , m_description( '0' )
579579 , m_tracks()
580580{
581581 //nothing to do
685685 , m_isCompilation( false )
686686 , m_albumArtist( 0 )
687687 , m_artistId( 0 )
688 , m_artistName( 0 )
688 , m_artistName( '0' )
689689{
690690 //nothing to do
691691}
  
3535 : m_origPath( origPath )
3636 , m_tempSavePath()
3737 , m_origRenamedSavePath()
38 , m_tempSaveDigest( 0 )
38 , m_tempSaveDigest( '0' )
3939 , m_cleanupNeeded( false )
4040 , m_verbose( false )
4141 , m_prefix( "safefilesaver" )