Eliminate even more warnings and bump warning level to 3

Shouldn't need to go any higher, level 4+ gives insane warnings
This commit is contained in:
Berke Viktor
2012-10-30 22:13:40 +01:00
parent cb0f6c8c91
commit ea0d3059f4
11 changed files with 28 additions and 5 deletions

View File

@@ -55,6 +55,7 @@
#include "../common/util.h"
#include "../common/text.h"
#include "../common/plugin.h"
#include "../common/typedef.h"
#include <gdk/gdkkeysyms.h>
#include "gtkutil.h"
#include "menu.h"

View File

@@ -51,6 +51,7 @@
#include "../common/util.h"
#include "../common/cfgfiles.h"
#include "../common/hexchatc.h"
#include "../common/typedef.h"
#include "gtkutil.h"
#include "pixmaps.h"

View File

@@ -34,6 +34,7 @@
#include "../common/hexchat.h"
#include "../common/util.h"
#include "../common/cfgfiles.h"
#include "../common/typedef.h"
GdkColor colors[] = {

View File

@@ -60,7 +60,7 @@ pixmap_load_from_file_real (char *file)
if (!img)
return NULL;
gdk_pixbuf_render_pixmap_and_mask (img, &pixmap, NULL, 128);
gdk_pixbuf_unref (img);
g_object_unref (img);
return pixmap;
}