Commit d4804172190d9ca441072e38ba51f239213dea52
1 parent
35639cb9
Exists in
develop
Fixing plugin load on windows.
Showing
2 changed files
with
5 additions
and
4 deletions
Show diff stats
src/main/windows/tools.c
src/objects/settings/gsettings.c
| ... | ... | @@ -100,13 +100,13 @@ |
| 100 | 100 | schema_id, |
| 101 | 101 | TRUE); |
| 102 | 102 | |
| 103 | - g_message("Loading '%s'",names[ix]); | |
| 103 | +// g_message("Loading '%s'",names[ix]); | |
| 104 | 104 | settings = g_settings_new_full(schema, NULL, NULL); |
| 105 | 105 | |
| 106 | 106 | g_settings_schema_source_unref(source); |
| 107 | 107 | |
| 108 | 108 | if(settings) { |
| 109 | - g_message("Got gsettings from %s",names[ix]); | |
| 109 | +// g_message("Got gsettings from %s",names[ix]); | |
| 110 | 110 | return settings; |
| 111 | 111 | } |
| 112 | 112 | |
| ... | ... | @@ -157,7 +157,7 @@ |
| 157 | 157 | |
| 158 | 158 | GSettings * pw3270_application_settings_new() { |
| 159 | 159 | return settings_new(G_STRINGIFY(PRODUCT_ID)); |
| 160 | - } | |
| 160 | + } | |
| 161 | 161 | |
| 162 | 162 | GSettings * pw3270_application_window_settings_new() { |
| 163 | 163 | return settings_new(G_STRINGIFY(PRODUCT_ID) ".window"); | ... | ... |