diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-04 14:43:27 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-04 14:43:27 +0800 |
commit | 570d177b3ce987f9536f94196006bcdd7f620b47 (patch) | |
tree | b3e1a8387c50ef8046f934b3bd2063d859374c73 /x11/yelp/files/patch-src_yelp-bookmarks.c | |
parent | e16d0dd7e624b3c1e94bfd13be209b6b9afcde82 (diff) | |
download | marcuscom-ports-570d177b3ce987f9536f94196006bcdd7f620b47.tar marcuscom-ports-570d177b3ce987f9536f94196006bcdd7f620b47.tar.gz marcuscom-ports-570d177b3ce987f9536f94196006bcdd7f620b47.tar.bz2 marcuscom-ports-570d177b3ce987f9536f94196006bcdd7f620b47.tar.lz marcuscom-ports-570d177b3ce987f9536f94196006bcdd7f620b47.tar.xz marcuscom-ports-570d177b3ce987f9536f94196006bcdd7f620b47.tar.zst marcuscom-ports-570d177b3ce987f9536f94196006bcdd7f620b47.zip |
* Fix build on 4.X
* Add support for man and info (doesn't work yet, of course. It's not like
we didn't fix this and send them patches last time yelp supported man and
info. You'd think they would have gotten it right this time.)
* Fix the plist
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3352 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/yelp/files/patch-src_yelp-bookmarks.c')
-rw-r--r-- | x11/yelp/files/patch-src_yelp-bookmarks.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/x11/yelp/files/patch-src_yelp-bookmarks.c b/x11/yelp/files/patch-src_yelp-bookmarks.c new file mode 100644 index 000000000..d93a715ea --- /dev/null +++ b/x11/yelp/files/patch-src_yelp-bookmarks.c @@ -0,0 +1,13 @@ +--- src/yelp-bookmarks.c.orig Tue Jan 4 01:32:40 2005 ++++ src/yelp-bookmarks.c Tue Jan 4 01:33:18 2005 +@@ -285,8 +285,9 @@ + GtkEntry *entry; + + if (id == GTK_RESPONSE_OK) { ++ const gchar *title; + entry = GTK_ENTRY (g_object_get_data (G_OBJECT (dialog), "title_entry")); +- const gchar *title = gtk_entry_get_text (entry); ++ title = gtk_entry_get_text (entry); + + bookmarks_add_bookmark (uri, title, TRUE); + } |