Kaydet (Commit) 7db40f6b authored tarafından Stephan Bergmann's avatar Stephan Bergmann

warning C4701: potentially uninitialized local variable 'eType' used

Change-Id: I5c7f81a30d06b4dbaddb3b64ea5467ed4faeac38
üst f8380bfd
...@@ -812,7 +812,7 @@ namespace { ...@@ -812,7 +812,7 @@ namespace {
void setColorScaleEntry(ScColorScaleEntry* pEntry, uno::Reference<sheet::XColorScaleEntry> xEntry) void setColorScaleEntry(ScColorScaleEntry* pEntry, uno::Reference<sheet::XColorScaleEntry> xEntry)
{ {
ScColorScaleEntryType eType; ScColorScaleEntryType eType = ScColorScaleEntryType();
sal_Int32 nApiType = xEntry->getType(); sal_Int32 nApiType = xEntry->getType();
bool bFound = false; bool bFound = false;
for (size_t i = 0; i < SAL_N_ELEMENTS(aColorScaleEntryTypeMap); ++i) for (size_t i = 0; i < SAL_N_ELEMENTS(aColorScaleEntryTypeMap); ++i)
...@@ -1082,7 +1082,7 @@ namespace { ...@@ -1082,7 +1082,7 @@ namespace {
void setDataBarEntry(ScColorScaleEntry* pEntry, uno::Reference<sheet::XDataBarEntry> xEntry) void setDataBarEntry(ScColorScaleEntry* pEntry, uno::Reference<sheet::XDataBarEntry> xEntry)
{ {
ScColorScaleEntryType eType; ScColorScaleEntryType eType = ScColorScaleEntryType();
sal_Int32 nApiType = xEntry->getType(); sal_Int32 nApiType = xEntry->getType();
bool bFound = false; bool bFound = false;
for (size_t i = 0; i < SAL_N_ELEMENTS(aDataBarEntryTypeMap); ++i) for (size_t i = 0; i < SAL_N_ELEMENTS(aDataBarEntryTypeMap); ++i)
...@@ -1464,7 +1464,7 @@ namespace { ...@@ -1464,7 +1464,7 @@ namespace {
void setIconSetEntry(ScIconSetFormat* pFormat, uno::Reference<sheet::XIconSetEntry> xEntry, size_t nPos) void setIconSetEntry(ScIconSetFormat* pFormat, uno::Reference<sheet::XIconSetEntry> xEntry, size_t nPos)
{ {
ScIconSetFormatData* pData = pFormat->GetIconSetData(); ScIconSetFormatData* pData = pFormat->GetIconSetData();
ScColorScaleEntryType eType; ScColorScaleEntryType eType = ScColorScaleEntryType();
sal_Int32 nApiType = xEntry->getType(); sal_Int32 nApiType = xEntry->getType();
bool bFound = false; bool bFound = false;
for (size_t i = 0; i < SAL_N_ELEMENTS(aIconSetEntryTypeMap); ++i) for (size_t i = 0; i < SAL_N_ELEMENTS(aIconSetEntryTypeMap); ++i)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment