diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-01-04 22:50:34 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-01-04 22:51:53 +0100 |
commit | bac11703170bb416e71ccca142227ea6a22b8572 (patch) | |
tree | c2de06d50f8eee6097210dc9eacae9c31471f3c3 /unotools | |
parent | 54235fbab795f72ba6f50318713d862075edbf17 (diff) |
remove unnecessary ;
Change-Id: I0e16305cac5cd5e4824a4e2bab7e4ac10d2bd469
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/ucbhelper/tempfile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx index 53be9620b97f..177c29374406 100644 --- a/unotools/source/ucbhelper/tempfile.cxx +++ b/unotools/source/ucbhelper/tempfile.cxx @@ -227,7 +227,7 @@ OUString lcl_createName( const OUString& rLeadingChars, Tokens & tokens, const OUString* pExtension, const OUString* pParent, bool bDirectory, bool bKeep, bool bLock) { - OUString aName = ConstructTempDir_Impl( pParent ) + rLeadingChars;; + OUString aName = ConstructTempDir_Impl( pParent ) + rLeadingChars; OUString token; while (tokens.next(&token)) { |