diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-05-10 11:57:13 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-05-10 11:57:13 -0400 |
commit | d79960037eed04e57c239e8f77015a2d017a9247 (patch) | |
tree | 9351b310357b41998ff1f81d55dcc68c990051ee /sc/inc/global.hxx | |
parent | eac91db8a23223e456fb2f17e13e2cc328b2b7cf (diff) |
Cleaned up ScImportParam.
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r-- | sc/inc/global.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index c2d70620764d..9872f01cda62 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -422,19 +422,19 @@ struct ScImportParam SCROW nRow1; SCCOL nCol2; SCROW nRow2; - sal_Bool bImport; - String aDBName; // alias of data base - String aStatement; - sal_Bool bNative; - sal_Bool bSql; // statement or name? - sal_uInt8 nType; // enum DBObject + bool bImport; + ::rtl::OUString aDBName; // alias of data base + ::rtl::OUString aStatement; + bool bNative; + bool bSql; // statement or name? + sal_uInt8 nType; // enum DBObject ScImportParam(); ScImportParam( const ScImportParam& r ); ~ScImportParam(); ScImportParam& operator= ( const ScImportParam& r ); - sal_Bool operator== ( const ScImportParam& r ) const; + bool operator== ( const ScImportParam& r ) const; }; struct ScStringHashCode |