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 "PropertyColumnWidths.h"
#include <Base/Writer.h>
#include <Base/Reader.h>
#include <App/Range.h>
#include "Utils.h"
#include <PropertyColumnWidthsPy.h>
@@ -132,7 +133,7 @@ void PropertyColumnWidths::Restore(Base::XMLReader &reader)
try {
if (name && width) {
int col = decodeColumn(name);
int col = App::decodeColumn(name);
int colWidth = atoi(width);
setValue(col, colWidth);