diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-05-23 05:45:13 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-05-23 05:45:13 +0000 |
commit | a0feab74b55dfbe6f0400e97fa840b027185a5a0 (patch) | |
tree | 7af72df59695642524eee3baea08e00294f24ffd /xmlsecurity | |
parent | e22284505aebc41ea32499c31ae2d6ea0b267b3a (diff) |
#i89564# Initialize variable to avoid warning.
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx index 8fd875f23cb9..20a1a6094e21 100644 --- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx +++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: digitalsignaturesdialog.cxx,v $ - * $Revision: 1.34 $ + * $Revision: 1.35 $ * * This file is part of OpenOffice.org. * @@ -91,7 +91,7 @@ namespace Sequence< css::uno::Any > aValues = GetProperties( Sequence<OUString>(&sDef,1) ); if ( aValues.getLength() == 1) { - sal_Int16 nTmp; + sal_Int16 nTmp = 0; if ( aValues[0] >>= nTmp ) m_nODF = nTmp; else |