summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/workrave/files/workrave-1.9.1-gtkmm_api.patch')
-rw-r--r--app-misc/workrave/files/workrave-1.9.1-gtkmm_api.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/app-misc/workrave/files/workrave-1.9.1-gtkmm_api.patch b/app-misc/workrave/files/workrave-1.9.1-gtkmm_api.patch
new file mode 100644
index 000000000000..9e6d6b6389ee
--- /dev/null
+++ b/app-misc/workrave/files/workrave-1.9.1-gtkmm_api.patch
@@ -0,0 +1,25 @@
+Description: get_action_area() now returns ButtonBox* instead of
+ HButtonBox*, change type of constructor argument to reflect this.
+Author: Ilya Barygin <barygin@gmail.com>
+--- workrave-1.9.1.orig/frontend/plugin/exercises/gtkmm/src/ExercisesPanel.hh
++++ workrave-1.9.1/frontend/plugin/exercises/gtkmm/src/ExercisesPanel.hh
+@@ -43,7 +43,7 @@
+ class ExercisesPanel : public Gtk::HBox
+ {
+ public:
+- ExercisesPanel(Gtk::HButtonBox *dialog_action_area);
++ ExercisesPanel(Gtk::ButtonBox *dialog_action_area);
+ ~ExercisesPanel();
+
+ void set_exercise_count(int num);
+--- workrave-1.9.1.orig/frontend/plugin/exercises/gtkmm/src/ExercisesPanel.cc
++++ workrave-1.9.1/frontend/plugin/exercises/gtkmm/src/ExercisesPanel.cc
+@@ -210,7 +210,7 @@ text_buffer_set_markup (GtkTextBuffer *b
+
+ int ExercisesPanel::exercises_pointer = 0;
+
+-ExercisesPanel::ExercisesPanel(Gtk::HButtonBox *dialog_action_area)
++ExercisesPanel::ExercisesPanel(Gtk::ButtonBox *dialog_action_area)
+ : Gtk::HBox(false, 6),
+ exercises(Exercise::get_exercises())
+ {