summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ivy/Regexp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ivy/Regexp.h b/Ivy/Regexp.h
index 22e2699..3265561 100644
--- a/Ivy/Regexp.h
+++ b/Ivy/Regexp.h
@@ -18,13 +18,13 @@ public:
bool Match( const char * s );
int SubStrings() const;
- const string operator[]( unsigned int i ) const;
+ const String operator[]( unsigned int i ) const;
int SubStart( unsigned int i ) const;
int SubLength( unsigned int i ) const;
- string GetReplaceString( const char * source ) const;
+ String GetReplaceString( const char * source ) const;
- string GetErrorString() const;
+ String GetErrorString() const;
bool CompiledOK() const;
#if defined( _RE_DEBUG )
@@ -32,7 +32,7 @@ public:
#endif
private:
const char * str; /* used to return substring offsets only */
- mutable string m_szError;
+ mutable String m_szError;
regexp * rc;
void ClearErrorString() const;