summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-04-18 08:26:49 +0000
committerPacho Ramos <pacho@gentoo.org>2014-04-18 08:26:49 +0000
commitc58209ca5da004fe560012bbc211a61089326ba7 (patch)
treef1cb09dc2ddba1fba74d64d8c0a3722bc635705e /app-misc/workrave/files
parentDrop old (diff)
downloadgentoo-2-c58209ca5da004fe560012bbc211a61089326ba7.tar.gz
gentoo-2-c58209ca5da004fe560012bbc211a61089326ba7.tar.bz2
gentoo-2-c58209ca5da004fe560012bbc211a61089326ba7.zip
Drop old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-misc/workrave/files')
-rw-r--r--app-misc/workrave/files/workrave-1.9.1-gtkmm_api.patch25
-rw-r--r--app-misc/workrave/files/workrave-1.9.1-nogst-crash.patch27
2 files changed, 0 insertions, 52 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
deleted file mode 100644
index 9e6d6b6389ee..000000000000
--- a/app-misc/workrave/files/workrave-1.9.1-gtkmm_api.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-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())
- {
diff --git a/app-misc/workrave/files/workrave-1.9.1-nogst-crash.patch b/app-misc/workrave/files/workrave-1.9.1-nogst-crash.patch
deleted file mode 100644
index 95fc690dc1a0..000000000000
--- a/app-misc/workrave/files/workrave-1.9.1-nogst-crash.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- frontend/common/src/SoundPlayer.cc.orig 2010-06-16 10:49:11.000000000 +0200
-+++ frontend/common/src/SoundPlayer.cc 2010-06-16 10:54:04.000000000 +0200
-@@ -334,8 +334,11 @@
- void
- SoundPlayer::init()
- {
-- driver->init();
-- register_sound_events();
-+ if (driver != NULL)
-+ {
-+ driver->init();
-+ register_sound_events();
-+ }
- }
-
- void
-@@ -405,6 +408,10 @@
- void
- SoundPlayer::sync_settings()
- {
-+ if (driver == NULL)
-+ {
-+ return;
-+ }
- if (driver != NULL)
- {
- for (unsigned int i = 0; i < sizeof(sound_registry)/sizeof(sound_registry[0]); i++)