Closed
Bug 143991
Opened 23 years ago
Closed 23 years ago
[gtk2] nsWidgetFactory.cpp does not compile
Categories
(Core :: XUL, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: dennishaney11, Assigned: blizzard)
References
Details
nsWidgetFactory.cpp
nsWidgetFactory.cpp: In function `nsresult
nsBidiKeyboardConstructor(nsISupports*, const nsIID&, void**)':
nsWidgetFactory.cpp:55: `nsBidiKeyboard' undeclared (first use this function)
nsWidgetFactory.cpp:55: (Each undeclared identifier is reported only once for
each function it appears in.)
nsWidgetFactory.cpp:55: `inst' undeclared (first use this function)
nsWidgetFactory.cpp:55: parse error before `(' token
fixed with:
Index: nsWidgetFactory.cpp
===================================================================
RCS file: /cvsroot/mozilla/widget/src/gtk2/nsWidgetFactory.cpp,v
retrieving revision 1.7
diff -u -r1.7 nsWidgetFactory.cpp
--- nsWidgetFactory.cpp 12 May 2002 21:03:16 -0000 1.7
+++ nsWidgetFactory.cpp 12 May 2002 23:18:29 -0000
@@ -52,7 +52,9 @@
NS_GENERIC_FACTORY_CONSTRUCTOR(nsChildWindow)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsAppShell)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsLookAndFeel)
+#ifdef IBMBIDI
NS_GENERIC_FACTORY_CONSTRUCTOR(nsBidiKeyboard)
+#endif
NS_GENERIC_FACTORY_CONSTRUCTOR(nsGtkXRemoteWidgetHelper)
static
Comment 1•23 years ago
|
||
-> blizzard
Assignee: jaggernaut → blizzard
Status: UNCONFIRMED → NEW
Ever confirmed: true
Assignee | ||
Comment 2•23 years ago
|
||
Fixed.
Assignee | ||
Comment 3•23 years ago
|
||
Fixed.
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•