| 36 | int _defParams; |
| 37 | public: |
| 38 | bool getCommand( int & cmd, int & params ) |
| 39 | { |
| 40 | lString16 v = _menu->getProps()->getStringDef(LCSTR(_settingKey), ""); |
| 41 | cmd = _defCommand; |
| 42 | params = _defParams; |
| 43 | return splitIntegerList( v, lString16(","), cmd, params ); |
| 44 | } |
| 45 | /// submenu for options dialog support |
| 46 | virtual lString16 getSubmenuValue() |
| 47 | { |
nothing calls this directly
no test coverage detected