| 2167 | } // AppInstance::execOnProjectCreatedCallback |
| 2168 | |
| 2169 | std::string |
| 2170 | AppInstance::getAppIDString() const |
| 2171 | { |
| 2172 | if ( appPTR->isBackground() ) { |
| 2173 | return "app"; |
| 2174 | } else { |
| 2175 | QString appID = QString( QString::fromUtf8("app%1") ).arg(getAppID() + 1); |
| 2176 | |
| 2177 | return appID.toStdString(); |
| 2178 | } |
| 2179 | } |
| 2180 | |
| 2181 | void |
| 2182 | AppInstance::onGroupCreationFinished(const NodePtr& node, |
no test coverage detected