Commit c25d27583db79637497a03ff0f0d5a36cc2adb03

Authored by Perry Werneck
1 parent 3c9477f2
Exists in master and in 1 other branch develop

Exporting "save-settings" method.

src/include/internals.h
@@ -137,9 +137,6 @@ @@ -137,9 +137,6 @@
137 137
138 G_GNUC_INTERNAL void v3270_dialog_close(GtkDialog *dialog, gpointer user_data); 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 /// @brief Emit "has-text" signal. 140 /// @brief Emit "has-text" signal.
144 G_GNUC_INTERNAL void v3270_emit_copy_state(GtkWidget *widget); 141 G_GNUC_INTERNAL void v3270_emit_copy_state(GtkWidget *widget);
145 142
src/include/v3270/settings.h
@@ -47,6 +47,9 @@ @@ -47,6 +47,9 @@
47 /// @brief This function adds the terminal settings from widget to key_file. 47 /// @brief This function adds the terminal settings from widget to key_file.
48 LIB3270_EXPORT void v3270_to_key_file(GtkWidget *widget, GKeyFile *key_file, const gchar *group_name); 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 #ifdef _WIN32 53 #ifdef _WIN32
51 54
52 LIB3270_EXPORT gboolean v3270_load_registry(GtkWidget *widget, HKEY hKey, const gchar *group_name); 55 LIB3270_EXPORT gboolean v3270_load_registry(GtkWidget *widget, HKEY hKey, const gchar *group_name);