blob: ab0156ab2a709511cb146ef16f641bf6b625cd2f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- src/bin/ibuild/ibdialog.c.org Tue Feb 2 08:04:15 1993
+++ src/bin/ibuild/ibdialog.c Sun Jan 23 20:14:43 2000
@@ -35,6 +35,7 @@
#include <Unidraw/unidraw.h>
#include <Unidraw/viewer.h>
#include <Unidraw/catalog.h>
+#include <stdio.h>
#include <stream.h>
#include <string.h>
@@ -382,7 +383,7 @@
strcat(ButtonClass, "_Button");
const char* proc = bsVar->GetFuncName();
- boolean export = bsVar->GetExport();
+ boolean exportval = bsVar->GetExport();
CodeView* kidview = GetKidView();
MemberNameVar* kidname;
if (kidview != nil) {
@@ -409,7 +410,7 @@
out << "Interactor*" << coreclass;
out << "::Interior() {\n";
- if (export) {
+ if (exportval) {
out << " " << bsVar->GetName() << " = state;\n";
} else {
out << " ButtonState* ";
|