~compiz-team/compiz/build-fixes-part-3-compizconfig-python

« back to all changes in this revision

Viewing changes to plugins/notification/src/notification.cpp

  • Committer: Daniel van Vugt
  • Date: 2012-05-18 07:42:45 UTC
  • mfrom: (3201.1.1 Werror)
  • Revision ID: daniel.van.vugt@canonical.com-20120518074245-5fzjg1hep3esvucx
Fix all compiler warnings and turn on -Werror again (treat warnings as errors)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
COMPIZ_PLUGIN_20090315 (notification, NotificationPluginVTable);
28
28
 
29
29
/* libnotify 0.7 introduced proper NOTIFY_CHECK_VERSION macro */
30
 
#ifdef NOTIFY_CHECK_VERSION
 
30
#if defined(NOTIFY_CHECK_VERSION) && !defined(HAVE_LIBNOTIFY_0_6_1)
31
31
#if NOTIFY_CHECK_VERSION(0,6,1)
32
32
#define HAVE_LIBNOTIFY_0_6_1
33
33
#endif