diff options
author | jcid <devnull@localhost> | 2008-05-22 00:14:53 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-05-22 00:14:53 +0200 |
commit | 9d97108cd3fe3a35bfcfabdf0839ab8d089dc483 (patch) | |
tree | a01b5bd2bbfc76af42eb038681a891256649270e | |
parent | 2164601461cf170ed66ffd9aef2cec0834662cdc (diff) |
.
-rw-r--r-- | src/dialog.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dialog.cc b/src/dialog.cc index a394f677..66bccc61 100644 --- a/src/dialog.cc +++ b/src/dialog.cc @@ -242,7 +242,7 @@ void a_Dialog_findtext(BrowserWindow *bw) /*--------------------------------------------------------------------------*/ static int choice5_answer; -void choice5_cb(Widget *button, void *number) +static void choice5_cb(Widget *button, void *number) { choice5_answer = VOIDP2INT(number); _MSG("choice5_cb: %d\n", choice5_answer); @@ -291,6 +291,7 @@ int a_Dialog_choice5(const char *QuestionTxt, } window->end(); + //window->hotspot(box); window->exec(); delete window; _MSG("Choice5 answer = %d\n", choice5_answer); |