You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CommonData/databaseinterface.h
+1-1
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ class DatabaseInterface
110
110
111
111
//Columns & Data/Values
112
112
//Index stuff:
113
-
intcolumnInsert( int dataSetId, int index = -1, const std::string & name = "", columnType colType = columnType::unknown, bool alterTable=true); ///< Insert a row into Columns and create the corresponding columns in DataSet_? Also makes sure the indices are correct
113
+
intcolumnInsert( int dataSetId, int index, columnType colType, computedColumnType computedType, bool autoSort, bool alterTable=true); ///< Insert a row into Columns and create the corresponding columns in DataSet_? Also makes sure the indices are correct
114
114
intcolumnLastFreeIndex( int dataSetId);
115
115
voidcolumnIndexIncrements( int dataSetId, int index); ///< If index already is in use that column and all after are incremented by 1
116
116
voidcolumnIndexDecrements( int dataSetId, int index); ///< Indices bigger than index are decremented, assumption is that the previous one using it has been removed already
visible:!columnModel.autoSort||columnModel.rowsTotal-columnModel.firstNonNumericRow>1//If there are at least 2 non numerics there is something to reverse
visible:!columnModel.autoSort||columnModel.rowsTotal-columnModel.firstNonNumericRow>1//If there are at least 2 non numerics there is something to move up
visible:!columnModel.autoSort||columnModel.rowsTotal-columnModel.firstNonNumericRow>1//If there are at least 2 non numerics there is something to move down
0 commit comments