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/caja-connect-server-dialog.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/caja-connect-server-dialog.h')
-rw-r--r-- | src/caja-connect-server-dialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/caja-connect-server-dialog.h b/src/caja-connect-server-dialog.h index 1876e8a9..2167ed5a 100644 --- a/src/caja-connect-server-dialog.h +++ b/src/caja-connect-server-dialog.h @@ -42,12 +42,12 @@ typedef struct _CajaConnectServerDialog CajaConnectServerDialog; typedef struct _CajaConnectServerDialogClass CajaConnectServerDialogClass; -typedef struct _CajaConnectServerDialogDetails CajaConnectServerDialogDetails; +typedef struct _CajaConnectServerDialogPrivate CajaConnectServerDialogPrivate; struct _CajaConnectServerDialog { GtkDialog parent; - CajaConnectServerDialogDetails *details; + CajaConnectServerDialogPrivate *details; }; struct _CajaConnectServerDialogClass |