Enable Transformiix on Linux. Don't build on OS/2 for now until bug 53518 is fixed.

git-svn-id: svn://10.0.0.236/trunk@94766 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
nisheeth%netscape.com
2001-05-12 09:54:16 +00:00
parent 94b7bf8d7d
commit 2a7979ae4d
8 changed files with 35 additions and 10 deletions

View File

@@ -21,7 +21,7 @@
* Keith Visco, kvisco@ziplink.net
* -- original author.
*
* $Id: StringExpr.cpp,v 1.1 2000-04-06 07:45:39 kvisco%ziplink.net Exp $
* $Id: StringExpr.cpp,v 1.2 2001-05-12 09:54:16 nisheeth%netscape.com Exp $
*/
#include "Expr.h"
@@ -29,7 +29,7 @@
/**
* StringExpr
* @author <A HREF="mailto:kvisco@ziplink.net">Keith Visco</A>
* @version $Revision: 1.1 $ $Date: 2000-04-06 07:45:39 $
* @version $Revision: 1.2 $ $Date: 2001-05-12 09:54:16 $
**/
/**
@@ -47,6 +47,11 @@ StringExpr::StringExpr(const String& value) {
this->value.append(value);
} //-- StringExpr
StringExpr::StringExpr(const char* value) {
//-- copy value
this->value.append(value);
} //-- StringExpr
/**
* Default Destructor
**/