Commit c25d27583db79637497a03ff0f0d5a36cc2adb03
1 parent
3c9477f2
Exists in
master
and in
1 other branch
Exporting "save-settings" method.
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
src/include/internals.h
... | ... | @@ -137,9 +137,6 @@ |
137 | 137 | |
138 | 138 | G_GNUC_INTERNAL void v3270_dialog_close(GtkDialog *dialog, gpointer user_data); |
139 | 139 | |
140 | - /// @brief Emit the "save-settings" signal. | |
141 | - G_GNUC_INTERNAL void v3270_emit_save_settings(GtkWidget *widget); | |
142 | - | |
143 | 140 | /// @brief Emit "has-text" signal. |
144 | 141 | G_GNUC_INTERNAL void v3270_emit_copy_state(GtkWidget *widget); |
145 | 142 | ... | ... |
src/include/v3270/settings.h
... | ... | @@ -47,6 +47,9 @@ |
47 | 47 | /// @brief This function adds the terminal settings from widget to key_file. |
48 | 48 | LIB3270_EXPORT void v3270_to_key_file(GtkWidget *widget, GKeyFile *key_file, const gchar *group_name); |
49 | 49 | |
50 | + /// @brief Emit the "save-settings" signal. | |
51 | + LIB3270_EXPORT void v3270_emit_save_settings(GtkWidget *widget); | |
52 | + | |
50 | 53 | #ifdef _WIN32 |
51 | 54 | |
52 | 55 | LIB3270_EXPORT gboolean v3270_load_registry(GtkWidget *widget, HKEY hKey, const gchar *group_name); | ... | ... |