diff options
author | Pablo Barciela <[email protected]> | 2018-06-01 15:17:43 +0200 |
---|---|---|
committer | lukefromdc <[email protected]> | 2018-06-04 00:30:48 -0400 |
commit | 347e1f170005496ce1bf3e672f46419dca6b558e (patch) | |
tree | 5be84bf266d3e8d8b3091daf5e9ab0b2088e9b0e /src/caja-property-browser.c | |
parent | cfc9b47cf1bfb49bec5eaae30af4c7726496f81f (diff) | |
download | caja-347e1f170005496ce1bf3e672f46419dca6b558e.tar.bz2 caja-347e1f170005496ce1bf3e672f46419dca6b558e.tar.xz |
avoid deprecated 'gtk_window_set_wmclass'
Diffstat (limited to 'src/caja-property-browser.c')
-rw-r--r-- | src/caja-property-browser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caja-property-browser.c b/src/caja-property-browser.c index 2e80fee8..c674a450 100644 --- a/src/caja-property-browser.c +++ b/src/caja-property-browser.c @@ -292,7 +292,7 @@ caja_property_browser_init (CajaPropertyBrowser *property_browser) /* set the title and standard close accelerator */ gtk_window_set_title (GTK_WINDOW (widget), _("Backgrounds and Emblems")); - gtk_window_set_wmclass (GTK_WINDOW (widget), "property_browser", "Caja"); + gtk_window_set_type_hint (GTK_WINDOW (widget), GDK_WINDOW_TYPE_HINT_DIALOG); GtkStyleContext *context; |