diff options
author | Herve Quiroz <hq@FreeBSD.org> | 2005-02-24 02:04:26 +0000 |
---|---|---|
committer | Herve Quiroz <hq@FreeBSD.org> | 2005-02-24 02:04:26 +0000 |
commit | 453ac91de65fb1d218efd865963a281f031ec6f9 (patch) | |
tree | 7bea379f06c3a7406733a0b6542bab124a46642a /multimedia/ogmrip/files/patch-ogmrip-pref.diff | |
parent | - update Martin's email address (diff) |
- Update to 0.7.0 with the following changes:
* Manual cropping and scaling
* Custom temporary directory
* Rip from DVD structure
* Minor UI redesign
* Many many fixes
- Add a patch to fix the issue that caused error messages to be displayed in
the console (incorrect cast) [1]
Obtained from: Olivier Rolland <billl@users.sourceforge.net> (author) [1]
Diffstat (limited to 'multimedia/ogmrip/files/patch-ogmrip-pref.diff')
-rw-r--r-- | multimedia/ogmrip/files/patch-ogmrip-pref.diff | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/multimedia/ogmrip/files/patch-ogmrip-pref.diff b/multimedia/ogmrip/files/patch-ogmrip-pref.diff new file mode 100644 index 000000000000..53c1e18237ca --- /dev/null +++ b/multimedia/ogmrip/files/patch-ogmrip-pref.diff @@ -0,0 +1,31 @@ +$FreeBSD$ + +--- src/ogmrip-pref.c.orig 2005-02-24 02:25:46.143332080 +0100 ++++ src/ogmrip-pref.c 2005-02-24 02:27:45.306216568 +0100 +@@ -124,22 +124,22 @@ + } + + static void +-ogmrip_pref_output_dir_notified (GConfClient *gconf, guint id, GConfEntry *entry, GtkWidget *label) ++ogmrip_pref_output_dir_notified (GConfClient *gconf, guint id, GConfEntry *entry, GtkWidget *widget) + { + /* + * Sanity checks + */ +- gtk_label_set_text (GTK_LABEL (label), ++ gtk_entry_set_text (GTK_ENTRY (widget), + gconf_value_get_string (entry->value)); + } + + static void +-ogmrip_pref_tmp_dir_notified (GConfClient *gconf, guint id, GConfEntry *entry, GtkWidget *label) ++ogmrip_pref_tmp_dir_notified (GConfClient *gconf, guint id, GConfEntry *entry, GtkWidget *widget) + { + /* + * Sanity checks + */ +- gtk_label_set_text (GTK_LABEL (label), ++ gtk_entry_set_text (GTK_ENTRY (widget), + gconf_value_get_string (entry->value)); + } + |