Guys,
Sorry I forgot to post this, but I'd sent it from an account that wasn't on the trinity-devel list and it got bounced. amarok/src/osd.h has a constructor that needs fixing:
--- amarok/src/osd.h +++ amarok/src/osd.h 2011-02-26 14:45:04.000000000 -0600 @@ -37,7 +37,7 @@
public slots: /** calls setText() then show(), after setting image if needed */ - void show( const TQString &text, TQImage newImage = TQImage::TQImage() ); + void show( const TQString &text, TQImage newImage = TQImage() ); void ratingChanged( const short rating ); void ratingChanged( const TQString& path, int rating ); void volChanged( unsigned char volume );
On 03/01/2011 10:58 PM, David C. Rankin wrote:
Guys,
Sorry I forgot to post this, but I'd sent it from an account that wasn't on the trinity-devel list and it got bounced. amarok/src/osd.h has a constructor that needs fixing:
--- amarok/src/osd.h +++ amarok/src/osd.h 2011-02-26 14:45:04.000000000 -0600 @@ -37,7 +37,7 @@
public slots: /** calls setText() then show(), after setting image if needed */
void show( const TQString &text, TQImage newImage = TQImage::TQImage() );
void show( const TQString &text, TQImage newImage = TQImage() ); void ratingChanged( const short rating ); void ratingChanged( const TQString& path, int rating ); void volChanged( unsigned char volume );
Tim, Serhgei, Robert,
Any chance we can get this constructor updated today? I need to pull a patch from my build script when the update goes through and I hate having a build script out there that will be broken if I miss when the update it done. (i.e. the trying to reapply and already applied patch issue)
Line 40 in osd.h just needs "TQImage::" deleted :)
On 03/03/2011 11:38 AM, David C. Rankin wrote:
Tim, Serhgei, Robert,
Any chance we can get this constructor updated today? I need to pull a patch from my build script when the update goes through and I hate having a build script out there that will be broken if I miss when the update it done. (i.e. the trying to reapply and already applied patch issue)
Line 40 in osd.h just needs "TQImage::" deleted :)
Thank you!