mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
d0094e951a
PR: ports/16024 Submitted by: MIHIRA Yoshiro <sanpei@sanpei.org>
30 lines
1.3 KiB
Plaintext
30 lines
1.3 KiB
Plaintext
--- src/bin/ibuild/ibmenu.c.org Wed Sep 9 07:34:15 1992
|
|
+++ src/bin/ibuild/ibmenu.c Wed Jan 5 22:45:28 2000
|
|
@@ -403,7 +403,7 @@
|
|
|
|
const char* proc = menuItem->GetTrackNameVar()->GetName();
|
|
const char* text = menuItem->GetMenuItemGraphic()->GetText();
|
|
- boolean export = icomp->GetMemberNameVar()->GetExport();
|
|
+ boolean getexport = icomp->GetMemberNameVar()->GetExport();
|
|
Shape* shape = icomp->GetShapeVar()->GetShape();
|
|
|
|
if (icomp->GetClassNameVar()->IsSubclass()) {
|
|
@@ -411,7 +411,7 @@
|
|
out << "(";
|
|
|
|
} else {
|
|
- if (export && !_emitMain) {
|
|
+ if (getexport && !_emitMain) {
|
|
out << " " << mname << " = ";
|
|
out << "new " << MenuClass;
|
|
} else {
|
|
@@ -431,7 +431,7 @@
|
|
EndInstantiate(out);
|
|
|
|
if (!_emitMain && proc != nil && *proc != '\0') {
|
|
- if (!export || icomp->GetClassNameVar()->IsSubclass()) {
|
|
+ if (!getexport || icomp->GetClassNameVar()->IsSubclass()) {
|
|
out << " " << mname << "->SetCoreClass(this);\n";
|
|
out <<" "<< mname <<"->SetCoreFunc("<< "&" << coreclass;
|
|
out << "::" << proc << ");\n";
|