source: projectionDesigner/trunk/projdesigner/src/gui/Defines.cpp @ 4

Last change on this file since 4 was 4, 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.