summaryrefslogtreecommitdiff
path: root/src/themes/slider/theme.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-05-06 21:23:19 +0200
committerraveit65 <[email protected]>2020-06-12 13:18:07 +0200
commit4a4c2d5ac322d61e789a7d732e2ac25951984c3f (patch)
tree0950cb43e05f5ffb4c21b066a7921045eb63a6af /src/themes/slider/theme.c
parent1092c4c309e12e039c19ff815bb725f1802afb6c (diff)
downloadmate-notification-daemon-4a4c2d5ac322d61e789a7d732e2ac25951984c3f.tar.bz2
mate-notification-daemon-4a4c2d5ac322d61e789a7d732e2ac25951984c3f.tar.xz
Remove conversion warnings
Diffstat (limited to 'src/themes/slider/theme.c')
-rw-r--r--src/themes/slider/theme.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/themes/slider/theme.c b/src/themes/slider/theme.c
index 438049b..8676520 100644
--- a/src/themes/slider/theme.c
+++ b/src/themes/slider/theme.c
@@ -495,6 +495,7 @@ void notification_tick(GtkWindow* nw, glong remaining)
void set_notification_text(GtkWindow* nw, const char* summary, const char* body)
{
char* str;
+ size_t str_len;
char* quoted;
GtkRequisition req;
WindowData* windata;
@@ -516,7 +517,8 @@ void set_notification_text(GtkWindow* nw, const char* summary, const char* body)
xmlInitParser();
str = g_strconcat ("<markup>", body, "</markup>", NULL);
/* parse notification body */
- doc = xmlReadMemory(str, strlen (str), "noname.xml", NULL, 0);
+ str_len = strlen (str);
+ doc = xmlReadMemory(str, (int) str_len, "noname.xml", NULL, 0);
g_free (str);
if (doc != NULL) {
xmlXPathContextPtr xpathCtx;
@@ -613,8 +615,8 @@ static GdkPixbuf* scale_pixbuf(GdkPixbuf* pixbuf, int max_width, int max_height,
int scale_x;
int scale_y;
- scale_x = (int) (pw * scale_factor);
- scale_y = (int) (ph * scale_factor);
+ scale_x = (int) (((float) pw) * scale_factor);
+ scale_y = (int) (((float) ph) * scale_factor);
return gdk_pixbuf_scale_simple(pixbuf, scale_x, scale_y, GDK_INTERP_BILINEAR);
}