File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 7
7
8
8
QT_BEGIN_NAMESPACE_XLSX
9
9
10
- const int XLSX_ROW_MAX = 1048576 ;
11
- const int XLSX_COLUMN_MAX = 16384 ;
12
- const int XLSX_STRING_MAX = 32767 ;
13
-
14
10
class QXLSX_EXPORT CellReference
15
11
{
16
12
public:
@@ -29,7 +25,6 @@ class QXLSX_EXPORT CellReference
29
25
~CellReference ();
30
26
31
27
QString toString (bool row_abs = false , bool col_abs = false ) const ;
32
- static CellReference fromString (const QString &cell);
33
28
bool isValid () const ;
34
29
inline void setRow (int row) { _row = row; }
35
30
inline void setColumn (int col) { _column = col; }
@@ -47,7 +42,7 @@ class QXLSX_EXPORT CellReference
47
42
48
43
inline bool operator >(const CellReference &other) const
49
44
{
50
- return _row > other._row || _column != other._column ;
45
+ return _row > other._row || _column != other._column ;
51
46
}
52
47
53
48
private:
Original file line number Diff line number Diff line change 42
42
43
43
QT_BEGIN_NAMESPACE_XLSX
44
44
45
+ namespace {
46
+ const int XLSX_ROW_MAX = 1048576 ;
47
+ const int XLSX_COLUMN_MAX = 16384 ;
48
+ const int XLSX_STRING_MAX = 32767 ;
49
+ } // namespace
50
+
45
51
WorksheetPrivate::WorksheetPrivate (Worksheet *p, Worksheet::CreateFlag flag)
46
52
: AbstractSheetPrivate(p, flag)
47
53
, windowProtection(false )
You can’t perform that action at this time.
0 commit comments