diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2012-07-10 22:00:22 +0200 |
---|---|---|
committer | Muthu Subramanian <sumuthu@suse.com> | 2012-07-11 12:31:49 +0530 |
commit | 3396c06c55ad5d5345aabfcf7efc674aaaa7f9a6 (patch) | |
tree | 4c4d679bba9d13fd111560e18641e66af9fc1909 /sc | |
parent | cfec62ef443b3cda054bb698375ee49bc11586a0 (diff) |
Use rtl_zeroMemory in place of rtl_fillMemory(..., 0)
Change-Id: Idd83f6340d13a1d7111d0d5a7268f1aa8bf5c09e
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/qpro/qprostyle.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/qpro/qprostyle.cxx b/sc/source/filter/qpro/qprostyle.cxx index f3556d63a064..9284bb297dfe 100644 --- a/sc/source/filter/qpro/qprostyle.cxx +++ b/sc/source/filter/qpro/qprostyle.cxx @@ -55,10 +55,10 @@ ScQProStyle::ScQProStyle() { - rtl_fillMemory (maAlign, sizeof (maAlign), 0); - rtl_fillMemory (maFont, sizeof (maFont), 0); - rtl_fillMemory (maFontRecord, sizeof (maFontRecord), 0); - rtl_fillMemory (maFontHeight, sizeof (maFontHeight), 0); + rtl_zeroMemory (maAlign, sizeof (maAlign)); + rtl_zeroMemory (maFont, sizeof (maFont)); + rtl_zeroMemory (maFontRecord, sizeof (maFontRecord)); + rtl_zeroMemory (maFontHeight, sizeof (maFontHeight)); } void ScQProStyle::SetFormat( ScDocument *pDoc, sal_uInt8 nCol, sal_uInt16 nRow, SCTAB nTab, sal_uInt16 nStyle ) |