diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-01-09 20:39:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-09 20:39:26 (GMT) |
commit | a1474373a0be8b099a2458b9c02d19e191e457e7 (patch) | |
tree | 79d80549df7c0c680205605b696027c4f1453d02 | |
parent | f2c332b81338c7baff12c771c8799c741a43144b (diff) | |
parent | dcd7390a61abc1da656c10dde282191e651a36fb (diff) | |
download | Doxygen-a1474373a0be8b099a2458b9c02d19e191e457e7.zip Doxygen-a1474373a0be8b099a2458b9c02d19e191e457e7.tar.gz Doxygen-a1474373a0be8b099a2458b9c02d19e191e457e7.tar.bz2 |
Merge pull request #638 from powARman/fix-vs2013-build
Fix building with Visual Studio 2013
-rw-r--r-- | qtools/qstring.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qtools/qstring.h b/qtools/qstring.h index 5fcff29..d459132 100644 --- a/qtools/qstring.h +++ b/qtools/qstring.h @@ -384,7 +384,7 @@ public: * - As return value for basicDirection(), it means that the first strong character * of the source string has a left-to-right direction. */ - DirLTR = 0b01, + DirLTR = 0x1, /// Right-to-left text. /*! * - As return value for direction(), it means that the source string @@ -392,13 +392,13 @@ public: * - As return value for basicDirection(), it means that the first strong character * of the source string has a right-to-left direction. */ - DirRTL = 0b10, + DirRTL = 0x2, /// Mixed-directional text /*! * As return value for direction(), it means that the source string * contains both left-to-right and right-to-left characters. */ - DirMixed = 0b11 + DirMixed = 0x3 }; //QT_STATIC_CONST QString null; |