summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-08-04 19:09:02 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-08-04 19:09:02 -0500
commit6213a065fe389c83eb5e9fdab42c95b3ff15c59d (patch)
treef1e0bb3b6f8eb162181bb55d57171048c65f7bfe /common
parentbb831be07ccc273b02017beeee1a73d7fd00ba47 (diff)
downloadtde-style-qtcurve-6213a065fe389c83eb5e9fdab42c95b3ff15c59d.tar.gz
tde-style-qtcurve-6213a065fe389c83eb5e9fdab42c95b3ff15c59d.zip
Clean up a couple of build warnings
Diffstat (limited to 'common')
-rw-r--r--common/config_file.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/common/config_file.c b/common/config_file.c
index aa1c289..91a9108 100644
--- a/common/config_file.c
+++ b/common/config_file.c
@@ -964,12 +964,8 @@ static bool readBoolEntry(TQtCConfig &cfg, const TQString &key, bool def)
static void readDoubleList(TQtCConfig &cfg, const char *key, double *list, int count)
{
-#if ( (0x039999 >= 0x040000))
- TQStringList strings(readStringEntry(cfg, key).split(',', TQString::SkipEmptyParts));
-#else
TQStringList strings(TQStringList::split(',', readStringEntry(cfg, key)));
-#endif
- bool ok(count==strings.size());
+ bool ok(count==(int)strings.size());
if(ok)
{