summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2012-04-24 12:30:41 +0200
committerMiklos Vajna <vmiklos@suse.cz>2012-04-24 12:31:10 +0200
commit836d56dd563523853e4b9d4bbe7e6f93c1710a2a (patch)
treeec3f9b02a8314512c28e155547a5f01681889331 /writerfilter
parent7ddb8f73c1a5573eedc593168f702287921ecb7a (diff)
WaE: make MSVC happy wrt. RTFDocumentImpl::dispatchDestination()
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 750e473d17c9..50f84c41797c 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -1062,7 +1062,7 @@ int RTFDocumentImpl::dispatchDestination(RTFKeyword nKeyword)
// Look for the field type
sal_Int32 nPos = Strm().Tell();
OStringBuffer aBuf;
- char ch;
+ char ch = 0;
bool bFoundCode = false;
bool bInKeyword = false;
while (!bFoundCode && ch != '}')