diff options
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/simplerangelist.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/simplerangelist.hxx b/sc/inc/simplerangelist.hxx index a16cf0042325..442d5c4e7a68 100644 --- a/sc/inc/simplerangelist.hxx +++ b/sc/inc/simplerangelist.hxx @@ -37,10 +37,10 @@ class ScSimpleRangeList public: struct Range { - SCCOL mnCol1; SCROW mnRow1; - SCCOL mnCol2; SCROW mnRow2; + SCCOL mnCol1; + SCCOL mnCol2; explicit Range(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2); }; typedef std::shared_ptr< ::std::list<Range> > RangeListRef; |