diff options
Diffstat (limited to 'x11-toolkits/gnome--/files/patch-src::gnome--::app.cc')
-rw-r--r-- | x11-toolkits/gnome--/files/patch-src::gnome--::app.cc | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/x11-toolkits/gnome--/files/patch-src::gnome--::app.cc b/x11-toolkits/gnome--/files/patch-src::gnome--::app.cc new file mode 100644 index 0000000..7491bffe --- /dev/null +++ b/x11-toolkits/gnome--/files/patch-src::gnome--::app.cc @@ -0,0 +1,39 @@ + +$FreeBSD$ + +--- src/gnome--/app.cc 2002/07/16 10:16:49 1.1 ++++ src/gnome--/app.cc 2002/07/16 10:18:08 +@@ -162,13 +162,13 @@ + return w; + } + +-App::Progress App::progress(const Gtk::string &description, Callback cancel=0) ++App::Progress App::progress(const Gtk::string &description, Callback cancel) + { + return Progress(*this, description, cancel); + } + + App::Progress App::progress(const Gtk::string &description, guint32 interval, +- ProgressCallback percent, Callback cancel=0) ++ ProgressCallback percent, Callback cancel) + { + return Progress(*this, description, interval, percent, cancel); + } +@@ -210,7 +210,7 @@ + + Progress::Progress(Gnome::App& app, + const Gtk::string &description, +- Cancel cancel=0) ++ Cancel cancel) + { + ProgressCallbackData *data=new ProgressCallbackData(); + data->cancel=cancel; +@@ -225,7 +225,7 @@ + const Gtk::string &description, + guint32 interval, + Update percent, +- Cancel cancel=0) ++ Cancel cancel) + { + ProgressCallbackData *data=new ProgressCallbackData(); + data->cancel=cancel; |