diff options
author | glarkin <glarkin@FreeBSD.org> | 2010-04-28 21:34:46 +0800 |
---|---|---|
committer | glarkin <glarkin@FreeBSD.org> | 2010-04-28 21:34:46 +0800 |
commit | 7794902cf18c1fd7d30e3a58ec986dd0aaabbb85 (patch) | |
tree | 4e2f9233373a7175f8e9407dcd7b70afe9e7f1ce /devel | |
parent | 8a1863e2694c72329d3de63f45fdee00b7b3564e (diff) | |
download | freebsd-ports-gnome-7794902cf18c1fd7d30e3a58ec986dd0aaabbb85.tar.gz freebsd-ports-gnome-7794902cf18c1fd7d30e3a58ec986dd0aaabbb85.tar.zst freebsd-ports-gnome-7794902cf18c1fd7d30e3a58ec986dd0aaabbb85.zip |
- Added patch to fix compiler errors (duplicate semicolons)
PR: ports/146098
Submitted by: glarkin
Approved by: gnome (mezz, via email)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libnotifymm/files/patch-libnotify__libnotifymm__notification.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/devel/libnotifymm/files/patch-libnotify__libnotifymm__notification.h b/devel/libnotifymm/files/patch-libnotify__libnotifymm__notification.h new file mode 100644 index 000000000000..03f6e06bc3e7 --- /dev/null +++ b/devel/libnotifymm/files/patch-libnotify__libnotifymm__notification.h @@ -0,0 +1,50 @@ +--- ./libnotify/libnotifymm/notification.h.orig 2010-04-23 11:36:40.000000000 -0400 ++++ ./libnotify/libnotifymm/notification.h 2010-04-23 11:37:20.000000000 -0400 +@@ -191,7 +191,7 @@ + * location. If @a attach is <tt>0</tt>, the widget will be unset. + * @param attach The widget to attach to, or <tt>0</tt>. + */ +- void attach_to_widget(Gtk::Widget& attach);; ++ void attach_to_widget(Gtk::Widget& attach); + + /** Attaches the notification to a Gtk::StatusIcon. This will set hints on the + * notification requesting that the notification point to the status icon's +@@ -303,17 +303,16 @@ + * specified callback function will be called. + */ + void add_action(const Glib::ustring& action, const Glib::ustring& label, const SlotInvokeAction& slot); +- ; + + + /** Clears all hints from the notification. + */ +- void clear_hints();; ++ void clear_hints(); + + + /** Clears all actions from the notification. + */ +- void clear_actions();; ++ void clear_actions(); + + /** Tells the notification server to hide the notification on the screen. + * @return <tt>true</tt> if successful. On error, this will return <tt>false</tt> and set +@@ -324,16 +323,14 @@ + #else + void close(std::auto_ptr<Glib::Error>& error); + #endif //GLIBMM_EXCEPTIONS_ENABLED +-; +- +- ++ ++ + /** + * @par Prototype: + * <tt>void on_my_%closed()</tt> + */ + + Glib::SignalProxy0< void > signal_closed(); +-; + + //gtkmmproc error: id : property defs lookup failed. + #ifdef GLIBMM_PROPERTIES_ENABLED |