search for: typefloat

Displaying 1 result from an estimated 1 matches for "typefloat".

Did you mean: type_float
2007 Aug 13
0
[PATCH] Use default item separator for lists.
...@ -628,7 +628,7 @@ readSetting (CCSContext *c, case TypeMatch: { - QStringList list = cfg->readListEntry (key, ';'); + QStringList list = cfg->readListEntry (key); if (!list.count() ) break; @@ -661,7 +661,7 @@ readSetting (CCSContext *c, case TypeFloat: { - QStringList list = cfg->readListEntry (key, ';'); + QStringList list = cfg->readListEntry (key); float *array = new float[list.count() ]; int i = 0; @@ -685,7 +685,7 @@ readSetting (CCSContext *c, case TypeColor: { - QStringList list =...