diff options
author | Scott Balneaves <[email protected]> | 2017-03-29 15:31:56 -0500 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-07-23 14:55:15 +0200 |
commit | 109a7fa77bb4745524eca8a0735b210b55b81fe0 (patch) | |
tree | 86696f58a2e6f0625b125f040f24eb9b6cd7fef0 /mateweather/mateweather.h | |
parent | b5e5639f43d2a7aae2c9dfa74f03992ca1cbd2e1 (diff) | |
download | mate-applets-109a7fa77bb4745524eca8a0735b210b55b81fe0.tar.bz2 mate-applets-109a7fa77bb4745524eca8a0735b210b55b81fe0.tar.xz |
Added logic to not send notification if weather update is equal (as decided by weather_info_equal ()) to the previous update
Diffstat (limited to 'mateweather/mateweather.h')
-rw-r--r-- | mateweather/mateweather.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mateweather/mateweather.h b/mateweather/mateweather.h index f486017c..a2f77b6a 100644 --- a/mateweather/mateweather.h +++ b/mateweather/mateweather.h @@ -27,6 +27,9 @@ G_BEGIN_DECLS typedef struct _MateWeatherApplet { MatePanelApplet* applet; WeatherInfo* mateweather_info; +#ifdef HAVE_LIBNOTIFY + WeatherInfo* mateweather_previnfo; +#endif GSettings* settings; |