mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
bf57334ca0
- The maintainer is now a committer. Reviewed by: Kim Culhan <kimc@w8hd.org>
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
--- src/bin/doc/DialogMgr.c.org Sat Apr 11 14:28:48 1992
|
|
+++ src/bin/doc/DialogMgr.c Sun Jan 23 19:56:53 2000
|
|
@@ -108,7 +108,8 @@
|
|
Window* window, const char* prompt, const char* filter
|
|
) {
|
|
long count = _chooser->count();
|
|
- for (long i = 0; i < count; ++i) {
|
|
+ long i;
|
|
+ for (i = 0; i < count; ++i) {
|
|
ChooserInfo& info = _chooser->item_ref(i);
|
|
if (strcmp(info._prompt, prompt) == 0) {
|
|
break;
|
|
@@ -128,7 +129,8 @@
|
|
Window* window, const char* prompt, const char* initial
|
|
) {
|
|
long count = _asker->count();
|
|
- for (long i = 0; i < count; ++i) {
|
|
+ long i;
|
|
+ for (i = 0; i < count; ++i) {
|
|
AskerInfo& info = _asker->item_ref(i);
|
|
if (strcmp(info._prompt, prompt) == 0) {
|
|
break;
|
|
@@ -146,7 +148,8 @@
|
|
|
|
int DialogManager::confirm (Window* window, const char* prompt) {
|
|
long count = _confirmer->count();
|
|
- for (long i = 0; i < count; ++i) {
|
|
+ long i;
|
|
+ for (i = 0; i < count; ++i) {
|
|
ConfirmerInfo& info = _confirmer->item_ref(i);
|
|
if (strcmp(info._prompt, prompt) == 0) {
|
|
break;
|
|
@@ -164,7 +167,8 @@
|
|
|
|
void DialogManager::report (Window* window, const char* prompt) {
|
|
long count = _reporter->count();
|
|
- for (long i = 0; i < count; ++i) {
|
|
+ long i;
|
|
+ for (i = 0; i < count; ++i) {
|
|
ReporterInfo& info = _reporter->item_ref(i);
|
|
if (strcmp(info._prompt, prompt) == 0) {
|
|
break;
|