mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 05:58:27 +02:00
Moved getTypeAsString function from public to protected
This commit is contained in:
parent
058c81aa1a
commit
8b6cce5889
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,6 @@ public:
|
||||||
* </ul>
|
* </ul>
|
||||||
*/
|
*/
|
||||||
Q_INVOKABLE QString getContext() const;
|
Q_INVOKABLE QString getContext() const;
|
||||||
Q_INVOKABLE QString getTypeAsString() const;
|
|
||||||
|
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* Checks whether the script is running as an Interface or avatar script.
|
* Checks whether the script is running as an Interface or avatar script.
|
||||||
|
@ -635,6 +634,7 @@ public:
|
||||||
|
|
||||||
void setType(Type type) { _type = type; };
|
void setType(Type type) { _type = type; };
|
||||||
Type getType() { return _type; };
|
Type getType() { return _type; };
|
||||||
|
QString getTypeAsString() const;
|
||||||
|
|
||||||
bool isFinished() const { return _isFinished; } // used by Application and ScriptWidget
|
bool isFinished() const { return _isFinished; } // used by Application and ScriptWidget
|
||||||
bool isRunning() const { return _isRunning; } // used by ScriptWidget
|
bool isRunning() const { return _isRunning; } // used by ScriptWidget
|
||||||
|
|
Loading…
Reference in a new issue