diff options
author | Andras Timar <andras.timar@collabora.com> | 2014-03-24 10:42:18 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2014-03-24 10:44:32 +0100 |
commit | f0ec98c18999495152719260a32d4f83572bda10 (patch) | |
tree | 3ac132cfe70ae95e2051fd847e5521def33750d9 | |
parent | f7c802b46d1c7cafe4c8e0cbec2ce46854862812 (diff) |
fdo#74155 mailmerge output path fix
regression from dd7acb3d76cd89b3f05dbdafe88eb50e60fd9d10
Change-Id: Ie2272905a2db7c301307ed625ad74c3f3fe6b275
-rw-r--r-- | sw/source/core/uibase/uno/unomailmerge.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/uibase/uno/unomailmerge.cxx b/sw/source/core/uibase/uno/unomailmerge.cxx index 054ce218a633..63d819951572 100644 --- a/sw/source/core/uibase/uno/unomailmerge.cxx +++ b/sw/source/core/uibase/uno/unomailmerge.cxx @@ -725,7 +725,7 @@ uno::Any SAL_CALL SwXMailMerge::execute( OUString aDelim = OUString(INET_PATH_TOKEN); if (aPath.getLength() >= aDelim.getLength() && - aPath.copy( aPath.getLength() - aDelim.getLength() ) == aDelim) + aPath.copy( aPath.getLength() - aDelim.getLength() ) != aDelim) aPath += aDelim; if (bCurFileNameFromColumn) pMgr->SetEMailColumn( aCurFileNamePrefix ); |