summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-06-11 15:00:37 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-07-20 01:26:07 -0400
commit0b7e86ac50139747432bd0f15a363a4f71e6a322 (patch)
tree1e71c37ad3cda8534ac856883ef65d13ca8c2670 /sc
parent35a4e75b8cf71cc66e8148a19954cc3c2db272db (diff)
remove some unnecessary casting
Change-Id: I451df09db58256fed68ce8537b2d8eb4b6ab6942 Reviewed-on: https://gerrit.libreoffice.org/26184 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> (cherry picked from commit 2ed5fa14f0e7624db241fde26e10fdd1009adfc7)
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/document.cxx8
-rw-r--r--sc/source/filter/xml/sheetdata.cxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 1e0b41514faa..19781108fba7 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -6502,12 +6502,12 @@ ScAddress ScDocument::GetNotePosition( size_t nIndex ) const
return ScAddress(nCol, nRow, nTab);
OSL_FAIL("note not found");
- return ScAddress(ScAddress::INITIALIZE_INVALID);
+ return ScAddress::INITIALIZE_INVALID;
}
}
OSL_FAIL("note not found");
- return ScAddress(ScAddress::INITIALIZE_INVALID);
+ return ScAddress::INITIALIZE_INVALID;
}
ScAddress ScDocument::GetNotePosition( size_t nIndex, SCTAB nTab ) const
@@ -6529,11 +6529,11 @@ ScAddress ScDocument::GetNotePosition( size_t nIndex, SCTAB nTab ) const
return ScAddress(nCol, nRow, nTab);
OSL_FAIL("note not found");
- return ScAddress(ScAddress::INITIALIZE_INVALID);
+ return ScAddress::INITIALIZE_INVALID;
}
OSL_FAIL("note not found");
- return ScAddress(ScAddress::INITIALIZE_INVALID);
+ return ScAddress::INITIALIZE_INVALID;
}
SCROW ScDocument::GetNotePosition( SCTAB nTab, SCCOL nCol, size_t nIndex ) const
diff --git a/sc/source/filter/xml/sheetdata.cxx b/sc/source/filter/xml/sheetdata.cxx
index e5e771dc09a1..1d1cfb93487d 100644
--- a/sc/source/filter/xml/sheetdata.cxx
+++ b/sc/source/filter/xml/sheetdata.cxx
@@ -28,7 +28,7 @@
ScSheetSaveData::ScSheetSaveData() :
mnStartTab( -1 ),
mnStartOffset( -1 ),
- maPreviousNote( OUString(), OUString(), ScAddress(ScAddress::INITIALIZE_INVALID) ),
+ maPreviousNote( OUString(), OUString(), ScAddress::INITIALIZE_INVALID ),
mbInSupportedSave( false )
{
}