diff options
author | rbuj <[email protected]> | 2020-03-03 08:43:13 +0100 |
---|---|---|
committer | ZenWalker <[email protected]> | 2020-03-07 13:43:55 +0100 |
commit | eaf5897792f7a4675091480d43508aefd731cd07 (patch) | |
tree | 7d77449c66e675cca0f00d86c0f44b1c0ffaee84 | |
parent | 1438fc157ef1646af33adf7dcf6ca8773d5935f5 (diff) | |
download | mate-control-center-eaf5897792f7a4675091480d43508aefd731cd07.tar.bz2 mate-control-center-eaf5897792f7a4675091480d43508aefd731cd07.tar.xz |
windows: Remove unused function
-rw-r--r-- | capplets/windows/mate-window-properties.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/capplets/windows/mate-window-properties.c b/capplets/windows/mate-window-properties.c index 0dcaf3ed..ccf377ca 100644 --- a/capplets/windows/mate-window-properties.c +++ b/capplets/windows/mate-window-properties.c @@ -292,23 +292,6 @@ response_cb (GtkWidget *dialog_win, } } -GtkWidget* -title_label_new (const char* title) -{ - GtkWidget *widget; - gchar *str; - - str = g_strdup_printf ("<b>%s</b>", _(title)); - widget = gtk_label_new (str); - g_free (str); - - gtk_label_set_use_markup (GTK_LABEL (widget), TRUE); - gtk_label_set_xalign (GTK_LABEL (widget), 0.0); - gtk_label_set_yalign (GTK_LABEL (widget), 0.0); - - return widget; -} - int main (int argc, char **argv) { |