Spreadsheet: Removed own expression parser and instead use the one in App.

This commit is contained in:
Eivind Kvedalen
2016-03-17 00:32:00 +01:00
committed by wmayer
parent c506881614
commit a21571a652
33 changed files with 121 additions and 3666 deletions

View File

@@ -28,6 +28,7 @@
#include "PropertyRowHeights.h"
#include <Base/Writer.h>
#include <Base/Reader.h>
#include <App/Range.h>
#include "Utils.h"
#include <PropertyRowHeightsPy.h>
@@ -126,7 +127,7 @@ void PropertyRowHeights::Restore(Base::XMLReader &reader)
try {
if (name && height) {
int row = decodeRow(name);
int row = App::decodeRow(name);
int rowHeight = atoi(height);
setValue(row, rowHeight);