Commit a7dc416809b54804859f53f7b219b8c9a717adee
1 parent
f0c7a0ad
Exists in
master
and in
4 other branches
Debugging windows version.
Showing
5 changed files
with
16 additions
and
4 deletions
Show diff stats
schemas/windows/window.gschema.xml.in
... | ... | @@ -75,13 +75,13 @@ |
75 | 75 | </key> |
76 | 76 | |
77 | 77 | <key name="toolbar-style" type="i"> |
78 | - <default>-1</default> | |
78 | + <default>0</default> | |
79 | 79 | <summary>How to draw the toolbar.</summary> |
80 | 80 | <description></description> |
81 | 81 | </key> |
82 | 82 | |
83 | 83 | <key name="toolbar-icon-size" type="i"> |
84 | - <default>0</default> | |
84 | + <default>2</default> | |
85 | 85 | <summary>The size of the icons in a toolbar</summary> |
86 | 86 | <description></description> |
87 | 87 | </key> | ... | ... |
src/objects/application/actions/window.c
... | ... | @@ -89,10 +89,10 @@ |
89 | 89 | return G_ACTION(action); |
90 | 90 | } |
91 | 91 | |
92 | - static void new_window_activated(GAction *action, GVariant *parameter, GtkApplication *application) { | |
92 | + static void new_window_activated(GAction G_GNUC_UNUSED(*action), GVariant G_GNUC_UNUSED(*parameter), GtkApplication *application) { | |
93 | 93 | |
94 | 94 | debug("%s",__FUNCTION__); |
95 | - g_application_activate(application); | |
95 | + g_application_activate(G_APPLICATION(application)); | |
96 | 96 | |
97 | 97 | } |
98 | 98 | ... | ... |
src/objects/settings/dialog.c
src/objects/settings/widget.c
win/pw3270.nsi.in
... | ... | @@ -309,6 +309,8 @@ Section "Uninstall" |
309 | 309 | DeleteRegValue HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PW3270_SDK_PATH" |
310 | 310 | SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 |
311 | 311 | |
312 | + DeleteRegKey HKLM "Software\GSettings\apps\@PACKAGE_NAME@\@PRODUCT_NAME@" | |
313 | + | |
312 | 314 | # Delete System libraries |
313 | 315 | ${@NSISREDIR@} |
314 | 316 | ... | ... |