summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2013-05-30 11:22:51 +0200
committerStefano Karapetsas <[email protected]>2013-05-30 11:22:51 +0200
commite5d73da5e1d559ba37ec3861f804e2d53ede41d1 (patch)
tree8d8b0d67c7466c283481925bbe3155615bc83cfd
parent4aaf8afec38324f6208e2faf21b7b29a195eee80 (diff)
downloadmate-calc-e5d73da5e1d559ba37ec3861f804e2d53ede41d1.tar.bz2
mate-calc-e5d73da5e1d559ba37ec3861f804e2d53ede41d1.tar.xz
Set window icon name
-rw-r--r--src/math-window.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math-window.c b/src/math-window.c
index 0ab882d..8a9302d 100644
--- a/src/math-window.c
+++ b/src/math-window.c
@@ -538,6 +538,7 @@ math_window_init(MathWindow *window)
gtk_window_set_title(GTK_WINDOW(window),
/* Title of main window */
_("Calculator"));
+ gtk_window_set_icon_name(GTK_WINDOW(window), "accessories-calculator");
gtk_window_set_role(GTK_WINDOW(window), "mate-calc");
gtk_window_set_resizable(GTK_WINDOW(window), FALSE);
g_signal_connect_after(G_OBJECT(window), "key-press-event", G_CALLBACK(key_press_cb), NULL);