diff options
author | Herve Quiroz <hq@FreeBSD.org> | 2005-03-03 01:22:23 +0000 |
---|---|---|
committer | Herve Quiroz <hq@FreeBSD.org> | 2005-03-03 01:22:23 +0000 |
commit | 73ac284b70b9c3ee2e33eea35c61c060c2af9ae3 (patch) | |
tree | 693f2d590036af9c040b383d4505982a02d2d9a3 /multimedia/ogmrip/files/patch-ogmrip-pref.diff | |
parent | - Fix fetch (diff) |
- Update to 0.7.1 -- mainly a bug fix release:
* fixed merging ac3 streams in avi containers
* fixed video bitrate allowed range
* fixed compilation without subtitles support
* fixed some invalid casts
* added x264 support
- Add WITH_DEBUG switch
Diffstat (limited to 'multimedia/ogmrip/files/patch-ogmrip-pref.diff')
-rw-r--r-- | multimedia/ogmrip/files/patch-ogmrip-pref.diff | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/multimedia/ogmrip/files/patch-ogmrip-pref.diff b/multimedia/ogmrip/files/patch-ogmrip-pref.diff deleted file mode 100644 index 53c1e18237ca..000000000000 --- a/multimedia/ogmrip/files/patch-ogmrip-pref.diff +++ /dev/null @@ -1,31 +0,0 @@ -$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)); - } - |