Some variables in notification_popup.c were peeking
out of their ifdefs, and I forgot to remove an
unused variable in vcal_meeting_gtk.c in my commit
8d93e8c.
void notification_popup_msg(MsgInfo *msginfo)
{
- FolderType ftype;
#if HAVE_LIBNOTIFY
+ FolderType ftype;
gchar *uistr;
#else
NotificationPopup *ppopup;
return;
}
- ftype = msginfo->folder->folder->klass->type;
G_LOCK(popup);
#ifdef HAVE_LIBNOTIFY
/* Check out which type to notify about */
+ ftype = msginfo->folder->folder->klass->type;
switch(ftype) {
case F_MH:
case F_MBOX:
static gboolean popup_timeout_fun(gpointer data)
{
NotificationPopup *ppopup;
- NotificationFolderType nftype;
-
- nftype = GPOINTER_TO_INT(data);
G_LOCK(popup);
gchar *summary = NULL;
gchar *description = NULL;
VCalEvent *event = NULL;
- gchar buf[256];
GSList *cur;
PrefsAccount *account = NULL;
gboolean res = FALSE;