diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-08-04 12:40:53 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-08-04 12:40:53 +0800 |
commit | d092d67ec7b4920321c65c5c3ef8ebf52c39cc56 (patch) | |
tree | 7ed1d4106b0fa337626a7ebcf4115a440529ea31 /x11/gnomeapplets2/files/patch-gweather_weather.c | |
parent | 6b63168bbb5ebe1e5130ff1585ca1046e6e6689a (diff) | |
download | marcuscom-ports-d092d67ec7b4920321c65c5c3ef8ebf52c39cc56.tar marcuscom-ports-d092d67ec7b4920321c65c5c3ef8ebf52c39cc56.tar.gz marcuscom-ports-d092d67ec7b4920321c65c5c3ef8ebf52c39cc56.tar.bz2 marcuscom-ports-d092d67ec7b4920321c65c5c3ef8ebf52c39cc56.tar.lz marcuscom-ports-d092d67ec7b4920321c65c5c3ef8ebf52c39cc56.tar.xz marcuscom-ports-d092d67ec7b4920321c65c5c3ef8ebf52c39cc56.tar.zst marcuscom-ports-d092d67ec7b4920321c65c5c3ef8ebf52c39cc56.zip |
Update to 2.7.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2611 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnomeapplets2/files/patch-gweather_weather.c')
-rw-r--r-- | x11/gnomeapplets2/files/patch-gweather_weather.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/x11/gnomeapplets2/files/patch-gweather_weather.c b/x11/gnomeapplets2/files/patch-gweather_weather.c deleted file mode 100644 index 593e86684..000000000 --- a/x11/gnomeapplets2/files/patch-gweather_weather.c +++ /dev/null @@ -1,30 +0,0 @@ ---- gweather/weather.c.orig Mon Jul 19 18:29:38 2004 -+++ gweather/weather.c Mon Jul 19 18:30:13 2004 -@@ -2264,11 +2264,12 @@ - const gchar *weather_info_get_humidity (WeatherInfo *info) - { - static gchar buf[20]; -+ gdouble humidity; - g_return_val_if_fail(info != NULL, NULL); - if (!info->valid) - return "-"; - -- gdouble humidity = calc_humidity(info->temp, info->dew); -+ humidity = calc_humidity(info->temp, info->dew); - if (humidity < 0.0) - return _("Unknown"); - -@@ -2279,11 +2280,12 @@ - - const gchar *weather_info_get_apparent (WeatherInfo *info) - { -+ gdouble apparent; - g_return_val_if_fail(info != NULL, NULL); - if (!info->valid) - return "-"; - -- gdouble apparent = calc_apparent(info); -+ apparent = calc_apparent(info); - if (apparent < -500.0) - return _("Unknown"); - |