diff options
author | Wu Xiaotian <[email protected]> | 2019-01-24 17:49:38 +0800 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-01-28 03:13:55 +0000 |
commit | e8f124db938d82554f98a325dc23e9e09e195eb4 (patch) | |
tree | 181b91a8b83ac64a9e86efc5b3b4266c33d3512b /src/file-manager/fm-properties-window.h | |
parent | 331a0e15750c92795aedb05a5e4178c6acc16bc1 (diff) | |
download | caja-e8f124db938d82554f98a325dc23e9e09e195eb4.tar.bz2 caja-e8f124db938d82554f98a325dc23e9e09e195eb4.tar.xz |
Avoid deprecated g_type_class_add_private
- caja-connect-server-dialog
- caja-navigation-window
- caja-property-browser
- caja-sidebar-title
- caja-trash-bar
- caja-window
- caja-zoom-action
- caja-zoom-control
- fm-desktop-icon-view
- fm-properties-window
Diffstat (limited to 'src/file-manager/fm-properties-window.h')
-rw-r--r-- | src/file-manager/fm-properties-window.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file-manager/fm-properties-window.h b/src/file-manager/fm-properties-window.h index 38eb0e15..860b76bb 100644 --- a/src/file-manager/fm-properties-window.h +++ b/src/file-manager/fm-properties-window.h @@ -43,12 +43,12 @@ typedef struct FMPropertiesWindow FMPropertiesWindow; #define FM_PROPERTIES_WINDOW_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), FM_TYPE_PROPERTIES_WINDOW, FMPropertiesWindowClass)) -typedef struct FMPropertiesWindowDetails FMPropertiesWindowDetails; +typedef struct _FMPropertiesWindowPrivate FMPropertiesWindowPrivate; struct FMPropertiesWindow { GtkDialog window; - FMPropertiesWindowDetails *details; + FMPropertiesWindowPrivate *details; }; struct FMPropertiesWindowClass |