aboutsummaryrefslogtreecommitdiff
path: root/src/ui
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-07-03 06:33:08 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-07-03 06:33:08 +0000
commit95324153c021eea42ef47c7c2512f5800b354ebc (patch)
tree48e782e4b2fd273611850d2c8d32bb182a4e26e6 /src/ui
parentb048c73f8201e99f4afc82982c214bb7761b7b8d (diff)
downloadqmmp-95324153c021eea42ef47c7c2512f5800b354ebc.tar.gz
qmmp-95324153c021eea42ef47c7c2512f5800b354ebc.tar.bz2
qmmp-95324153c021eea42ef47c7c2512f5800b354ebc.zip
fixed build
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@990 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/symboldisplay.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/symboldisplay.cpp b/src/ui/symboldisplay.cpp
index 253214016..fcc70c816 100644
--- a/src/ui/symboldisplay.cpp
+++ b/src/ui/symboldisplay.cpp
@@ -32,7 +32,7 @@ SymbolDisplay::SymbolDisplay ( QWidget *parent, int digits )
connect ( m_skin, SIGNAL ( skinChanged() ), this, SLOT (draw()));
draw();
for (int i=0; i<m_digits; ++i)
-#if defined(Q_OS_FREEBSD) || defined(Q_OS_WIN32)
+#if defined(Q_OS_FREEBSD) || defined(Q_OS_WIN32) || defined (Q_OS_MAC)
m_max += 9 * (int) pow(10,i);
#else
m_max += 9 * (int) exp10(i);