diff options
author | Jonathon Jongsma <jonathon@quotidian.org> | 2009-07-09 23:03:51 +0100 |
---|---|---|
committer | Jonathon Jongsma <jonathon@quotidian.org> | 2009-07-09 23:04:36 +0100 |
commit | 3bd0990be87051743d8f999c0d585867d9506360 (patch) | |
tree | ee483771adecc025b0e2fe7ea639ecfe419eed33 | |
parent | 48932911e530257c7bc0ea5bfd8a13222e94a3db (diff) | |
download | glibmm-3bd0990be87051743d8f999c0d585867d9506360.tar.gz |
implement Gio::VolumeMonitor::drive-stop-button
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | gio/src/volumemonitor.hg | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ 2009-07-09 Jonathon Jongsma <jonathon@quotidian.org> + * gio/src/volumemonitor.hg: implement Gio::VolumeMonitor::drive-stop-button + +2009-07-09 Jonathon Jongsma <jonathon@quotidian.org> + * gio/src/drive.ccg: fix accidental bug in Gio::Drive::eject() that the compiler warned me about diff --git a/gio/src/volumemonitor.hg b/gio/src/volumemonitor.hg index a7c5633a..93cccd80 100644 --- a/gio/src/volumemonitor.hg +++ b/gio/src/volumemonitor.hg @@ -75,6 +75,7 @@ public: //TODO: Remove no_default_handler when we can break ABI: _WRAP_SIGNAL(void drive_eject_button(const Glib::RefPtr<Drive>& drive), drive_eject_button, no_default_handler) + _WRAP_SIGNAL(void drive_stop_button(const Glib::RefPtr<Drive>& drive), drive_stop_button, no_default_handler) gboolean (*is_supported) (void); @@ -88,7 +89,6 @@ public: #m4 _CONVERSION(`Glib::RefPtr<Mount>',`GMount*',__CONVERT_CONST_REFPTR_TO_P) //_WRAP_VFUNC(Glib::RefPtr<Mount> get_mount_for_uuid(const std::string& uuid), get_mount_for_uuid) - //There are no properties. }; |