diff options
author | Johan Hauan <johan@hauan.name> | 2010-04-06 09:34:57 (GMT) |
---|---|---|
committer | Benjamin Poulain <benjamin.poulain@nokia.com> | 2010-04-06 09:45:56 (GMT) |
commit | a354e98838e67e9bbd9473d4cd42b89f45d0e3fe (patch) | |
tree | ebae89ee1ee9e6fcf2187260352c216957093242 /src | |
parent | 1a4ee517638e1ba3cdc622af70b3d53561d23392 (diff) | |
download | Qt-a354e98838e67e9bbd9473d4cd42b89f45d0e3fe.zip Qt-a354e98838e67e9bbd9473d4cd42b89f45d0e3fe.tar.gz Qt-a354e98838e67e9bbd9473d4cd42b89f45d0e3fe.tar.bz2 |
Sunstudio12.1(5.10): Fix compile errors GTK style and other minor compile errors
GTK Style
A QHashableLatin1Literal was a bit too clever for sunstudio.
Added and alternate constructor for sunstudio(ifdef)
Should not affect other compilers.
Other: Minor compile fixes, extra semicolon after macros etc.
Merge-request: 547
Reviewed-by: Benjamin Poulain <benjamin.poulain@nokia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/styles/qgtkstyle_p.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/styles/qgtkstyle_p.h b/src/gui/styles/qgtkstyle_p.h index 5bb7550..f0aee46 100644 --- a/src/gui/styles/qgtkstyle_p.h +++ b/src/gui/styles/qgtkstyle_p.h @@ -85,9 +85,14 @@ public: int size() const { return m_size; } const char *data() const { return m_data; } +#ifdef __SUNPRO_CC + QHashableLatin1Literal(const char* str) + : m_size(strlen(str)), m_data(str) {} +#else template <int N> QHashableLatin1Literal(const char (&str)[N]) : m_size(N - 1), m_data(str) {} +#endif QHashableLatin1Literal(const QHashableLatin1Literal &other) : m_size(other.m_size), m_data(other.m_data) |