diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-11 16:15:16 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-11 16:15:16 +0000 |
commit | bd78cbd028781c27c824c52715824e3cefda6054 (patch) | |
tree | 3e78adc0b981cf14a8e2552d51009a7175641943 | |
parent | 6811d2f85b49eafd0448de726d9a8287d81e7b1b (diff) |
build fix
Change-Id: I9d4dc8a165bc042a674eb472162292a486f3761c
-rw-r--r-- | oox/source/drawingml/textrun.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/oox/source/drawingml/textrun.cxx b/oox/source/drawingml/textrun.cxx index 1485f020c917..f4b75dbe260c 100644 --- a/oox/source/drawingml/textrun.cxx +++ b/oox/source/drawingml/textrun.cxx @@ -76,6 +76,7 @@ sal_Int32 TextRun::insertAt( } else { + OUString aSymbolFontName; sal_Int16 nSymbolFontFamily = 0, nSymbolFontPitch = 0; if ( !aTextCharacterProps.maSymbolFont.getFontData( aSymbolFontName, nSymbolFontPitch, nSymbolFontFamily, rFilterBase ) ) @@ -83,7 +84,7 @@ sal_Int32 TextRun::insertAt( else if ( !getText().isEmpty() ) { // #i113673 - OUString aLatinFontName, aSymbolFontName; + OUString aLatinFontName; sal_Int16 nLatinFontPitch = 0, nLatinFontFamily = 0; bool bLatinOk = aTextCharacterProps.maLatinFont.getFontData( aLatinFontName, nLatinFontPitch, nLatinFontFamily, rFilterBase ); |