mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 04:23:33 +02:00
Removed redundant method.
This commit is contained in:
parent
44fa00606a
commit
41662b183b
2 changed files with 0 additions and 17 deletions
|
@ -199,13 +199,3 @@ void TestScriptingInterface::setOtherAvatarsReplicaCount(int count) {
|
||||||
int TestScriptingInterface::getOtherAvatarsReplicaCount() {
|
int TestScriptingInterface::getOtherAvatarsReplicaCount() {
|
||||||
return qApp->getOtherAvatarsReplicaCount();
|
return qApp->getOtherAvatarsReplicaCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
QString TestScriptingInterface::getOperatingSystemType() {
|
|
||||||
#ifdef Q_OS_WIN
|
|
||||||
return "WINDOWS";
|
|
||||||
#elif defined Q_OS_MAC
|
|
||||||
return "MACOS";
|
|
||||||
#else
|
|
||||||
return "UNKNOWN";
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
|
@ -163,13 +163,6 @@ public slots:
|
||||||
*/
|
*/
|
||||||
Q_INVOKABLE int getOtherAvatarsReplicaCount();
|
Q_INVOKABLE int getOtherAvatarsReplicaCount();
|
||||||
|
|
||||||
/**jsdoc
|
|
||||||
* Returns the Operating Sytem type
|
|
||||||
* @function Test.getOperatingSystemType
|
|
||||||
* @returns {string} "WINDOWS", "MACOS" or "UNKNOWN"
|
|
||||||
*/
|
|
||||||
QString getOperatingSystemType();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool waitForCondition(qint64 maxWaitMs, std::function<bool()> condition);
|
bool waitForCondition(qint64 maxWaitMs, std::function<bool()> condition);
|
||||||
QString _testResultsLocation;
|
QString _testResultsLocation;
|
||||||
|
|
Loading…
Reference in a new issue