summaryrefslogtreecommitdiffstats
path: root/src/importers/rezkonvimporter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/importers/rezkonvimporter.cpp')
-rw-r--r--src/importers/rezkonvimporter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/importers/rezkonvimporter.cpp b/src/importers/rezkonvimporter.cpp
index 220f623..fdb3b61 100644
--- a/src/importers/rezkonvimporter.cpp
+++ b/src/importers/rezkonvimporter.cpp
@@ -281,8 +281,8 @@ void RezkonvImporter::readRange( const TQString &range_str, double &amount, doub
TQString from = range_str.section( '-', 0, 0 );
TQString to = range_str.section( '-', 1, 1 );
- amount = MixedNumber::fromString( from ).toDouble();
+ amount = MixedNumber::fromString( from, nullptr, /* locale_aware = */ false ).toDouble();
if ( !to.stripWhiteSpace().isEmpty() )
- amount_offset = MixedNumber::fromString( to ).toDouble() - amount;
+ amount_offset = MixedNumber::fromString( to, nullptr, /* locale_aware = */ false ).toDouble() - amount;
}