commit 6d45e57eb7e414bb4d276f2f3c9fc06ecb79726c
parent 43930e40fc4355c4427d2fa1298cee32966fd132
Author: Ricardo Mones <ricardo@mones.org>
Date: Wed, 29 Apr 2015 20:28:29 +0200
Fix bug #2981 and other two implicit...
...declaration warnings I probably introduced in previous commits:
• notification_prefs.c:1285:2: warning: implicit declaration of function
'filesel_select_file_open' [-Wimplicit-function-declaration]
• rssyl_prefs.c:110:2: warning: implicit declaration of function
'filesel_select_file_open' [-Wimplicit-function-declaration]
• icalderivedproperty.c:374:4: warning: implicit declaration of function
'icalproperty_add_parameters' [-Wimplicit-function-declaration]
;-)
Diffstat:
3 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/plugins/notification/notification_prefs.c b/src/plugins/notification/notification_prefs.c
@@ -31,6 +31,7 @@
#include "common/utils.h"
#include "common/defs.h"
#include "gtk/gtkutils.h"
+#include "gtk/filesel.h"
#include "main.h"
#include "notification_prefs.h"
diff --git a/src/plugins/rssyl/rssyl_prefs.c b/src/plugins/rssyl/rssyl_prefs.c
@@ -32,6 +32,7 @@
#include <common/defs.h>
#include <prefs_gtk.h>
#include <mainwindow.h>
+#include <gtk/filesel.h>
/* Local includes */
#include "rssyl.h"
diff --git a/src/plugins/vcalendar/libical/libical/icalderivedproperty.c.in b/src/plugins/vcalendar/libical/libical/icalderivedproperty.c.in
@@ -48,6 +48,8 @@
struct icalproperty_impl*
icalproperty_new_impl (icalproperty_kind kind);
+void icalproperty_add_parameters (struct icalproperty_impl *prop, va_list args);
+
/* This map associates the property kinds with the string
representation of the property name and the kind of VALUE that the
property uses as a default */