source: projectionDesigner/tag/ProjectionDesigner_1.1.5/projdesigner/src/gui/Defines.cpp @ 2

Last change on this file since 2 was 2, checked in by Torben Dannhauer, 14 years ago
File size: 235 bytes
Line 
1#include "gui/Defines.h"
2
3using namespace projection;
4
5QString projection::formatValue(double value)
6{
7    return QString::number(value, 'f', 4);
8}
9
10double projection::formatValue(const QString& value)
11{
12    return value.toDouble();
13}
Note: See TracBrowser for help on using the repository browser.