summaryrefslogtreecommitdiffstats
path: root/src/version.h
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2016-06-08 08:27:17 +0000
committertavmjong-free <tavmjong@free.fr>2016-06-08 08:27:17 +0000
commit2546a959c920d3df18271f9a9aed42bf574df3c1 (patch)
tree71ec6566a59dd516f98f3017e8ebfc20664b50e5 /src/version.h
parentTranslations. PO template update. (diff)
downloadinkscape-2546a959c920d3df18271f9a9aed42bf574df3c1.tar.gz
inkscape-2546a959c920d3df18271f9a9aed42bf574df3c1.zip
Store rest of string in Inkscape version ('pre' 'devel').
Fix try/catch blocks by really throwing errors. (stringstream doesn't throw errors by default.) (bzr r14962)
Diffstat (limited to 'src/version.h')
-rw-r--r--src/version.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/version.h b/src/version.h
index e17688b6d..f6221f6a6 100644
--- a/src/version.h
+++ b/src/version.h
@@ -13,6 +13,8 @@
#define SVG_VERSION "1.1"
+#include <string>
+
namespace Inkscape {
class Version {
@@ -43,6 +45,7 @@ public:
unsigned int _major;
unsigned int _minor;
+ std::string _tail; // Development version
};
}