diff options
author | monsta <[email protected]> | 2018-01-27 23:49:15 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-01-28 17:30:45 +0100 |
commit | a5205924900148d3ce7905dbe946d6b325f2abc6 (patch) | |
tree | 9a1d1a1c235500381044b8274735d094f4bb2278 /src/util.cpp | |
parent | 06ae3f89d68c0b967e5febe7425625d114ac4308 (diff) | |
download | mate-system-monitor-a5205924900148d3ce7905dbe946d6b325f2abc6.tar.bz2 mate-system-monitor-a5205924900148d3ce7905dbe946d6b325f2abc6.tar.xz |
require GTK+ 3.22 and GLib 2.50
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/util.cpp b/src/util.cpp index 857e26d..174654f 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -125,11 +125,7 @@ procman_make_label_for_mmaps_or_ofiles(const char *format, name = mnemonic_safe_process_name (process_name); title = g_strdup_printf(format, name, pid); label = gtk_label_new_with_mnemonic (title); -#if GTK_CHECK_VERSION (3, 16, 0) gtk_label_set_xalign (GTK_LABEL (label), 0.0); -#else - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); -#endif g_free (title); g_free (name); |