summaryrefslogtreecommitdiffstats
path: root/helpers.h
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2013-10-17 01:00:17 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-16 15:04:44 -0700
commit861b524e7a9ec743bb4495f70565bca8f9f43619 (patch)
tree82f3e47f2ba3e142b11316481c725d0ad0c575e5 /helpers.h
parent4c49670cdba403090067d8b92940b577d16ba550 (diff)
downloadsubsurface-861b524e7a9ec743bb4495f70565bca8f9f43619.tar.gz
Helpers: move some date related function to qt-gui.cpp
divelist.c: get_dive_date_string() get_short_dive_date_string() get_trip_date_string() MinGW support for *printf and parameter positions (e.g. %1$d) is horribly broken. Instead of implementing *proper* support for this feature Microsoft decide to ignore the standard (again) and they implement new functions with the '_p' suffix, such as 'sprintf_p', which seem to be available from a 2003 runtime. To top that 'sprintf_p' is not really a 'sprintf' but rather a 'snprintf'. It seems that the MinGW people ignore the issue and do not provide wrappers of any sort, or at least for the current recommended compiler for Qt 4.8.5 on Windows - which is a 4.4.0. A note of warning; inspecting how MinGW does certain things in headers such as stdio.h, can ensue bad dreams or other negative effects on to the viewer. This forces us to move the following functions from the 'back-end' (divelist.c) to the 'front-end' (qt-gui.cpp) and use QString. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'helpers.h')
-rw-r--r--helpers.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/helpers.h b/helpers.h
index c9e70532d..fb0bbd78b 100644
--- a/helpers.h
+++ b/helpers.h
@@ -29,6 +29,9 @@ QString getSubsurfaceDataPath(QString folderToFind);
extern const QString get_dc_nickname(const char *model, uint32_t deviceid);
int gettimezoneoffset();
int parseTemperatureToMkelvin(const QString& text);
+QString get_dive_date_string(timestamp_t when);
+QString get_short_dive_date_string(timestamp_t when);
+QString get_trip_date_string(timestamp_t when, int nr);
extern DiveComputerList dcList;