Gentoo Archives: gentoo-commits

From: Alexandre Restovtsev <tetromino@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:gnome-next commit in: dev-cpp/glibmm/files/
Date: Wed, 31 Aug 2011 06:46:34
Message-Id: 2a2a2a63195591a8d16ca020738b0cc1fe39dfb4.tetromino@gentoo
1 commit: 2a2a2a63195591a8d16ca020738b0cc1fe39dfb4
2 Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
3 AuthorDate: Wed Aug 31 06:44:47 2011 +0000
4 Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
5 CommitDate: Wed Aug 31 06:45:54 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=2a2a2a63
7
8 dev-cpp/glibmm: drop accidentally included work-in-progress patch
9
10 ---
11 .../glibmm-2.29.11-timezonemonitor-generated.patch | 42 --------------------
12 1 files changed, 0 insertions(+), 42 deletions(-)
13
14 diff --git a/dev-cpp/glibmm/files/glibmm-2.29.11-timezonemonitor-generated.patch b/dev-cpp/glibmm/files/glibmm-2.29.11-timezonemonitor-generated.patch
15 deleted file mode 100644
16 index 649e296..0000000
17 --- a/dev-cpp/glibmm/files/glibmm-2.29.11-timezonemonitor-generated.patch
18 +++ /dev/null
19 @@ -1,42 +0,0 @@
20 ---- a/glib/glibmm/timezone.cc
21 -+++ b/glib/glibmm/timezone.cc
22 -@@ -117,13 +117,6 @@
23 - return Glib::wrap(g_time_zone_new_utc());
24 - }
25 -
26 --
27 --void TimeZone::refresh_local()
28 --{
29 --g_time_zone_refresh_local();
30 --}
31 --
32 --
33 - int TimeZone::find_interval(TimeType type, gint64 time) const
34 - {
35 - return g_time_zone_find_interval(const_cast<GTimeZone*>(gobj()), ((GTimeType)(type)), time);
36 ---- a/glib/glibmm/timezone.h
37 -+++ b/glib/glibmm/timezone.h
38 -@@ -160,23 +160,6 @@
39 - */
40 - static TimeZone create_utc();
41 -
42 --
43 -- /** Notifies TimeZone that the local timezone may have changed.
44 -- *
45 -- * In response, TimeZone will drop its cache of the local time zone.
46 -- * No existing TimeZone will be modified and no DateTime will change
47 -- * its timezone but future calls to g_time_zone_new_local() will start
48 -- * returning the new timezone.
49 -- *
50 -- * TimeZone does no monitoring of the local timezone on its own, which
51 -- * is why you have to call this function to notify it of the change.
52 -- *
53 -- * If you use TimeZoneMonitor to watch for changes then this function
54 -- * will automatically be called for you.
55 -- */
56 -- static void refresh_local();
57 --
58 --
59 - /** Finds an the interval within @a tz that corresponds to the given @a time.
60 - * The meaning of @a time depends on @a type.
61 - *