diff options
author | rbuj <[email protected]> | 2019-06-19 09:47:23 +0200 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2019-06-22 10:06:37 +0200 |
commit | ebaa08f8c963e189a28e0dba9ad36292395b3887 (patch) | |
tree | 3ddff6fc2bec04b607c7f634300bfc3c2e03b084 /capplets/display/xrandr-capplet.c | |
parent | 51e386fd4f5c60750c57a815203981754580e01d (diff) | |
download | mate-control-center-ebaa08f8c963e189a28e0dba9ad36292395b3887.tar.bz2 mate-control-center-ebaa08f8c963e189a28e0dba9ad36292395b3887.tar.xz |
capplets: Use capplet_init
Diffstat (limited to 'capplets/display/xrandr-capplet.c')
-rw-r--r-- | capplets/display/xrandr-capplet.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/capplets/display/xrandr-capplet.c b/capplets/display/xrandr-capplet.c index 3dddb784..42b6b9b4 100644 --- a/capplets/display/xrandr-capplet.c +++ b/capplets/display/xrandr-capplet.c @@ -36,6 +36,8 @@ #include <glib/gi18n.h> #include <gio/gio.h> +#include "capplet-util.h" + typedef struct App App; typedef struct GrabInfo GrabInfo; @@ -2554,11 +2556,7 @@ main (int argc, char **argv) { App *app; - bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); - bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); - textdomain (GETTEXT_PACKAGE); - - gtk_init (&argc, &argv); + capplet_init (NULL, &argc, &argv); app = g_new0 (App, 1); |