summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-07-18 09:14:12 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-07-18 09:14:12 +0000
commit0ac411b9dbcb070d240b6c00cac032984b947582 (patch)
treef3e3b67d51fea85cfb6cea61bad33e29a366019e /dev-cpp/glibmm/files
parentAnother version bump, thank m4rku5 who noticed that eclipse plugin does not s... (diff)
downloadgentoo-2-0ac411b9dbcb070d240b6c00cac032984b947582.tar.gz
gentoo-2-0ac411b9dbcb070d240b6c00cac032984b947582.tar.bz2
gentoo-2-0ac411b9dbcb070d240b6c00cac032984b947582.zip
remove broken patch from 2.14.2, drop x86-fbsd keyword, we should go with 2.16.4, bug #199546.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.7 x86_64)
Diffstat (limited to 'dev-cpp/glibmm/files')
-rw-r--r--dev-cpp/glibmm/files/glibmm-2.14.0-date.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-cpp/glibmm/files/glibmm-2.14.0-date.patch b/dev-cpp/glibmm/files/glibmm-2.14.0-date.patch
deleted file mode 100644
index f72d7f6c3b0d..000000000000
--- a/dev-cpp/glibmm/files/glibmm-2.14.0-date.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -ur a/glib/glibmm/date.cc b/glib/glibmm/date.cc
---- a/glib/glibmm/date.cc 2007-08-13 11:51:09 +0100
-+++ b/glib/glibmm/date.cc 2007-10-19 10:02:22 +0100
-@@ -71,16 +71,6 @@
- g_date_set_parse(&gobject_, str.c_str());
- }
-
--#ifndef GLIBMM_DISABLE_DEPRECATED
--
--void Date::set_time(GTime time)
--{
-- //This method, and the C function that it wraps, are deprecated.
-- g_date_set_time(&gobject_, time);
--}
--#endif // GLIBMM_DISABLE_DEPRECATED
--
--
- void Date::set_time(time_t timet)
- {
- g_date_set_time_t(&gobject_, timet);
-diff -ur a/glib/glibmm/date.h b/glib/glibmm/date.h
---- a/glib/glibmm/date.h 2007-08-13 11:51:09 +0100
-+++ b/glib/glibmm/date.h 2007-10-19 10:02:08 +0100
-@@ -119,18 +119,6 @@
- */
- void set_parse (const Glib::ustring& str);
-
-- #ifndef GLIBMM_DISABLE_DEPRECATED
--
-- /** Sets the value of a date from a GTime (time_t) value.
-- *
-- * @param time GTime value to set.
-- *
-- * @deprecated Please use set_time(time_t) or set_time(const GTimeVal&).
-- */
-- void set_time(GTime time);
-- #endif // GLIBMM_DISABLE_DEPRECATED
--
--
- /** Sets the value of a date from a <type>time_t</type> value.
- *
- * @param timet time_t value to set