| 2183 | } // AppInstance::execOnProjectCreatedCallback |
| 2184 | |
| 2185 | std::string |
| 2186 | AppInstance::getAppIDString() const |
| 2187 | { |
| 2188 | if ( appPTR->isBackground() ) { |
| 2189 | return "app"; |
| 2190 | } else { |
| 2191 | QString appID = QString( QString::fromUtf8("app%1") ).arg(getAppID() + 1); |
| 2192 | |
| 2193 | return appID.toStdString(); |
| 2194 | } |
| 2195 | } |
| 2196 | |
| 2197 | void |
| 2198 | AppInstance::onGroupCreationFinished(const NodePtr& node, |
no test coverage detected