aboutsummaryrefslogtreecommitdiff
path: root/windows.c
diff options
context:
space:
mode:
authorJonas Kölker <jonaskoelker@yahoo.com>2015-10-03 15:01:48 +0200
committerSimon Tatham <anakin@pobox.com>2015-10-03 17:12:20 +0100
commit581becc3aa657fe4b7694c6f261d3193d51928d2 (patch)
tree30777cc2df0527bdc05c6d22c84a0dac181a0caa /windows.c
parentb94be41445d1ed056882c15795f01a6861fc184b (diff)
downloadpuzzles-581becc3aa657fe4b7694c6f261d3193d51928d2.zip
puzzles-581becc3aa657fe4b7694c6f261d3193d51928d2.tar.gz
puzzles-581becc3aa657fe4b7694c6f261d3193d51928d2.tar.bz2
puzzles-581becc3aa657fe4b7694c6f261d3193d51928d2.tar.xz
Insert a manual reference in the default status bar text.
To guide developers to the resources they need. [actual wording tweaked by SGT]
Diffstat (limited to 'windows.c')
-rw-r--r--windows.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/windows.c b/windows.c
index ba657c0..9cc66e2 100644
--- a/windows.c
+++ b/windows.c
@@ -1702,7 +1702,8 @@ static int fe_set_midend(frontend *fe, midend *me)
if (fe->statusbar)
DestroyWindow(fe->statusbar);
if (midend_wants_statusbar(fe->me)) {
- fe->statusbar = CreateWindowEx(0, STATUSCLASSNAME, TEXT("ooh"),
+ fe->statusbar = CreateWindowEx(0, STATUSCLASSNAME,
+ TEXT(DEFAULT_STATUSBAR_TEXT),
WS_CHILD | WS_VISIBLE,
0, 0, 0, 0, /* status bar does these */
NULL, NULL, fe->inst, NULL);