CVS commit by arwalker:
Correctly display row/col information.
M +1 -1 kstmatrixtable.cpp 1.2
--- kdeextragear-2/kst/kst/kstmatrixtable.cpp #1.1:1.2
@@ -47,5 +47,5 @@ void KstMatrixTable::paintCell( QPainter
}
- if (matrix && matrix->valueRaw(row, col, value)) {
+ if (matrix && matrix->valueRaw(col, row, value)) {
str.setNum(value, 'g', 16);
}