Changeset 973 for cpp/frams/param/mutableparam.cpp
- Timestamp:
- 07/03/20 00:37:13 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/param/mutableparam.cpp
r884 r973 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 19Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 33 33 int MutableParam::findGroup(const SString name, int ignoreprefix) 34 34 { 35 int skipprefix = grprefix.len () ? grprefix.len() + 2 : 0;35 int skipprefix = grprefix.length() ? grprefix.length() + 2 : 0; 36 36 for (int i = 0; i < groups.size(); i++) 37 37 { … … 57 57 { 58 58 tmp = grprefix; 59 if (tmp.len ()) tmp += ": ";59 if (tmp.length()) tmp += ": "; 60 60 tmp += gname; 61 61 }
Note: See TracChangeset
for help on using the changeset viewer.