diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:08:09 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:08:09 +0000 |
commit | 29e674700c1910a833f46f09aeba64314316c859 (patch) | |
tree | ac68ae6eef27e4a3fc5fee4fef8e63fd1aebf985 /unotools | |
parent | 7975754e1e228e544ead32dfe4cebbda46f013ec (diff) |
INTEGRATION: CWS warnings01 (1.7.16); FILE MERGED
2005/10/27 10:51:16 pl 1.7.16.1: #i55991# removed warnings for solaris platform
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/misc/atom.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/unotools/source/misc/atom.cxx b/unotools/source/misc/atom.cxx index 402948a06d80..78118fb055cd 100644 --- a/unotools/source/misc/atom.cxx +++ b/unotools/source/misc/atom.cxx @@ -4,9 +4,9 @@ * * $RCSfile: atom.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2005-09-09 09:46:36 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:08:09 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -346,14 +346,14 @@ const ::rtl::OUString& AtomClient::getString( int atomClass, int atom ) if( ! m_aProvider.hasAtom( atomClass, atom ) ) { // holes may occur by the above procedure! - Sequence< AtomClassRequest > aSeq( 1 ); - aSeq.getArray()[0].atomClass = atomClass; - aSeq.getArray()[0].atoms.realloc( 1 ); - aSeq.getArray()[0].atoms.getArray()[0] = atom; + Sequence< AtomClassRequest > aReq( 1 ); + aReq.getArray()[0].atomClass = atomClass; + aReq.getArray()[0].atoms.realloc( 1 ); + aReq.getArray()[0].atoms.getArray()[0] = atom; Sequence< ::rtl::OUString > aRet; try { - aRet = m_xServer->getAtomDescriptions( aSeq ); + aRet = m_xServer->getAtomDescriptions( aReq ); } catch( RuntimeException& ) { |