diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-06-26 13:36:15 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-06-26 13:37:18 -0400 |
commit | b2bbd5375ab6ca6ddf4c133d2fdf0b5e38d818b5 (patch) | |
tree | 2c1af3cf79be7226fd96c485f7dfda29f5d67fad /svl | |
parent | f15e440d148ed021091ef9b20f3aed2488f0fde3 (diff) |
Initialize it with empty OUString instances.
Since we only store strings the matrix.
Change-Id: Ie30e9ce0235810b3082ba13ac17c7d1b3c19375a
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/misc/gridprinter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/misc/gridprinter.cxx b/svl/source/misc/gridprinter.cxx index c36de35fcf44..a47264970ae3 100644 --- a/svl/source/misc/gridprinter.cxx +++ b/svl/source/misc/gridprinter.cxx @@ -56,7 +56,7 @@ struct GridPrinter::Impl bool mbPrint; Impl( size_t nRows, size_t nCols, bool bPrint ) : - maMatrix(nRows, nCols), mbPrint(bPrint) {} + maMatrix(nRows, nCols, OUString()), mbPrint(bPrint) {} }; GridPrinter::GridPrinter( size_t nRows, size_t nCols, bool bPrint ) : |