summaryrefslogtreecommitdiff
path: root/src/themes/nodoka/nodoka-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/nodoka/nodoka-theme.c
parent1092c4c309e12e039c19ff815bb725f1802afb6c (diff)
downloadmate-notification-daemon-4a4c2d5ac322d61e789a7d732e2ac25951984c3f.tar.bz2
mate-notification-daemon-4a4c2d5ac322d61e789a7d732e2ac25951984c3f.tar.xz
Remove conversion warnings
Diffstat (limited to 'src/themes/nodoka/nodoka-theme.c')
-rw-r--r--src/themes/nodoka/nodoka-theme.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/themes/nodoka/nodoka-theme.c b/src/themes/nodoka/nodoka-theme.c
index 65fd67f..b0ba049 100644
--- a/src/themes/nodoka/nodoka-theme.c
+++ b/src/themes/nodoka/nodoka-theme.c
@@ -322,12 +322,12 @@ nodoka_rounded_rectangle_with_arrow (cairo_t * cr,
cairo_rectangle_int_t rect;
rect.x = 0;
- rect.width = w;
+ rect.width = (int)w;
if (arrow_up)
rect.y = 0 + DEFAULT_ARROW_HEIGHT;
else
rect.y = 0;
- rect.height = h - DEFAULT_ARROW_HEIGHT;
+ rect.height = (int)(h - DEFAULT_ARROW_HEIGHT);
cairo_move_to (cr, rect.x + radius, rect.y);
@@ -369,7 +369,7 @@ nodoka_rounded_rectangle_with_arrow (cairo_t * cr,
static void
fill_background(GtkWidget *widget, WindowData *windata, cairo_t *cr)
{
- float alpha;
+ double alpha;
if (windata->composited)
alpha = BACKGROUND_OPACITY;
else
@@ -405,7 +405,7 @@ draw_stripe(GtkWidget *widget, WindowData *windata, cairo_t *cr)
GdkRGBA center_color;
GdkRGBA bottom_color;
- float alpha;
+ double alpha;
if (windata->composited)
alpha = BACKGROUND_OPACITY;
else
@@ -475,7 +475,7 @@ draw_stripe(GtkWidget *widget, WindowData *windata, cairo_t *cr)
static void
draw_border(GtkWidget *widget, WindowData *windata, cairo_t *cr)
{
- float alpha;
+ double alpha;
if (windata->composited)
alpha = BACKGROUND_OPACITY;
else
@@ -876,6 +876,7 @@ void
set_notification_text(GtkWindow *nw, const char *summary, const char *body)
{
char *str;
+ size_t str_len;
char* quoted;
WindowData *windata = g_object_get_data(G_OBJECT(nw), "windata");
g_assert(windata != NULL);
@@ -892,7 +893,8 @@ set_notification_text(GtkWindow *nw, const char *summary, const char *body)
xmlInitParser();
str = g_strconcat ("<markup>", "<span color=\"#000000\">", body, "</span>", "</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;