diff options
author | infirit <[email protected]> | 2014-11-10 14:23:32 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-10 14:23:32 +0100 |
commit | c75635285af8b70a781c2314aa7b03b2af716835 (patch) | |
tree | 74ceeaa1f8d083945f0d19d1861881aa23c246e7 /baobab/src/baobab-remote-connect-dialog.h | |
parent | 36f939fb81137ea2012436da12e4299b815b977b (diff) | |
download | mate-utils-c75635285af8b70a781c2314aa7b03b2af716835.tar.bz2 mate-utils-c75635285af8b70a781c2314aa7b03b2af716835.tar.xz |
Fix typo (G_TYPE_INSTANCE_CHECK_TYPE -> G_TYPE_CHECK_INSTANCE_TYPE)
Based on gnome-utils commit: 0bf63957d9ea7055b56332d567966701db99ccb5
From: Piotr Eljasiak <[email protected]>
Diffstat (limited to 'baobab/src/baobab-remote-connect-dialog.h')
-rw-r--r-- | baobab/src/baobab-remote-connect-dialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/baobab/src/baobab-remote-connect-dialog.h b/baobab/src/baobab-remote-connect-dialog.h index 5095bb16..a6e1c97e 100644 --- a/baobab/src/baobab-remote-connect-dialog.h +++ b/baobab/src/baobab-remote-connect-dialog.h @@ -37,7 +37,7 @@ #define BAOBAB_TYPE_REMOTE_CONNECT_DIALOG (baobab_remote_connect_dialog_get_type()) #define BAOBAB_REMOTE_CONNECT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), BAOBAB_TYPE_REMOTE_CONNECT_DIALOG, BaobabRemoteConnectDialog)) #define BAOBAB_REMOTE_CONNECT_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), BAOBAB_TYPE_REMOTE_CONNECT_DIALOG, BaobabRemoteConnectDialogClass)) -#define BAOBAB_IS_REMOTE_CONNECT_DIALOG(obj) (G_TYPE_INSTANCE_CHECK_TYPE ((obj), BAOBAB_TYPE_REMOTE_CONNECT_DIALOG) +#define BAOBAB_IS_REMOTE_CONNECT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BAOBAB_TYPE_REMOTE_CONNECT_DIALOG) typedef struct _BaobabRemoteConnectDialog BaobabRemoteConnectDialog; typedef struct _BaobabRemoteConnectDialogClass BaobabRemoteConnectDialogClass; |