diff options
author | Frank Schönheit <fs@openoffice.org> | 2001-06-12 12:14:14 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2001-06-12 12:14:14 +0000 |
commit | ca0ca176891f0976990db14bb77a0ff137852b9d (patch) | |
tree | f7b7cd30d56d89a8520966d4a49425568bc4ed41 /dbaccess/source/ui/misc | |
parent | ded9b7bc4f32ae089ed5d13a8ba29e4e26a27cfa (diff) |
#65293# linux ambiguity
Diffstat (limited to 'dbaccess/source/ui/misc')
-rw-r--r-- | dbaccess/source/ui/misc/TokenWriter.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/ui/misc/TokenWriter.cxx b/dbaccess/source/ui/misc/TokenWriter.cxx index c67c9d078c08..a6eb45924885 100644 --- a/dbaccess/source/ui/misc/TokenWriter.cxx +++ b/dbaccess/source/ui/misc/TokenWriter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: TokenWriter.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: fs $ $Date: 2001-04-03 14:15:03 $ + * last change: $Author: fs $ $Date: 2001-06-12 13:14:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -186,13 +186,13 @@ ODatabaseImportExport::ODatabaseImportExport(const Sequence< PropertyValue >& _a const PropertyValue* pEnd = pBegin + _aSeq.getLength(); for(;pBegin != pEnd;++pBegin) { - if(pBegin->Name == PROPERTY_DATASOURCENAME) + if (0 == pBegin->Name.compareToAscii(PROPERTY_DATASOURCENAME)) pBegin->Value >>= m_sDataSourceName; - else if(pBegin->Name == PROPERTY_COMMANDTYPE) + else if (0 == pBegin->Name.compareToAscii(PROPERTY_COMMANDTYPE)) pBegin->Value >>= m_nCommandType; - else if(pBegin->Name == PROPERTY_COMMAND) + else if (0 == pBegin->Name.compareToAscii(PROPERTY_COMMAND)) pBegin->Value >>= m_sName; - else if(pBegin->Name == PROPERTY_ACTIVECONNECTION) + else if (0 == pBegin->Name.compareToAscii(PROPERTY_ACTIVECONNECTION)) pBegin->Value >>= m_xConnection; } |