Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
Not eligible to see or edit group visibility for this bug.
View Bug Activity | Format For Printing | XML | Clone This Bug
GCC 4.1,amd64 emerge =cdrdao-1.2.1 dies here: ProgressDialog.h:65: error: extra qualification 'ProgressDialog::' on member 'time' A tivial fix IMHO is: diff -uw cdrdao-1.2.1.orig/xdao/ProgressDialog.h cdrdao-1.2.1/xdao/ProgressDialog.h --- cdrdao-1.2.1.orig/xdao/ProgressDialog.h 2005-05-01 11:17:17.000000000 +0200 +++ cdrdao-1.2.1/xdao/ProgressDialog.h 2005-12-15 22:32:25.860011728 +0100 @@ -35,6 +35,7 @@ ProgressDialog(ProgressDialogPool *father); ~ProgressDialog(); + bool time(); bool on_delete_event(GdkEventAny*); private: @@ -62,7 +63,6 @@ bool leadTimeFilled_; struct timeval time_; - bool ProgressDialog::time(); Gtk::Button *cancelButton_; Gtk::Button *closeButton_;
Created an attachment (id=74914) [details] gcc41 fix Simple patch yes, but you changed the meaning of the code by making time() public. Upstream won't accept a patch that does that :)
patch added. Thanks both