summaryrefslogtreecommitdiffstats
path: root/src/script
diff options
context:
space:
mode:
Diffstat (limited to 'src/script')
-rw-r--r--src/script/qscriptable.cpp2
-rw-r--r--src/script/qscriptclass.cpp2
-rw-r--r--src/script/qscriptcontext.cpp2
-rw-r--r--src/script/qscriptcontextinfo.cpp2
-rw-r--r--src/script/qscriptengine.cpp8
-rw-r--r--src/script/qscriptengineagent.cpp2
-rw-r--r--src/script/qscriptstring.cpp2
-rw-r--r--src/script/qscriptvalue.cpp2
-rw-r--r--src/script/qscriptvalueiterator.cpp2
9 files changed, 12 insertions, 12 deletions
diff --git a/src/script/qscriptable.cpp b/src/script/qscriptable.cpp
index a84f839..97c0173 100644
--- a/src/script/qscriptable.cpp
+++ b/src/script/qscriptable.cpp
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
\brief The QScriptable class provides access to the Qt Script environment from Qt C++ member functions.
\ingroup script
- \mainclass
+
With QScriptEngine::newQObject(), you can expose the signals and
slots and properties of any QObject (or subclass) to script
diff --git a/src/script/qscriptclass.cpp b/src/script/qscriptclass.cpp
index 41e5649..1df57d0 100644
--- a/src/script/qscriptclass.cpp
+++ b/src/script/qscriptclass.cpp
@@ -69,7 +69,7 @@ QT_BEGIN_NAMESPACE
\brief The QScriptClass class provides an interface for defining custom behavior of (a class of) Qt Script objects.
\ingroup script
- \mainclass
+
The QScriptClass class defines an interface for handling various
aspects of interaction with the Qt Script objects associated with
diff --git a/src/script/qscriptcontext.cpp b/src/script/qscriptcontext.cpp
index fcaa960..aed69d3 100644
--- a/src/script/qscriptcontext.cpp
+++ b/src/script/qscriptcontext.cpp
@@ -59,7 +59,7 @@ QT_BEGIN_NAMESPACE
\brief The QScriptContext class represents a Qt Script function invocation.
\ingroup script
- \mainclass
+
A QScriptContext provides access to the `this' object and arguments
passed to a script function. You typically want to access this
diff --git a/src/script/qscriptcontextinfo.cpp b/src/script/qscriptcontextinfo.cpp
index 30b87ce..dd3dbab 100644
--- a/src/script/qscriptcontextinfo.cpp
+++ b/src/script/qscriptcontextinfo.cpp
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
\brief The QScriptContextInfo class provides additional information about a QScriptContext.
\ingroup script
- \mainclass
+
QScriptContextInfo is typically used for debugging purposes. It can
provide information about the code being executed, such as the type
diff --git a/src/script/qscriptengine.cpp b/src/script/qscriptengine.cpp
index cadad5e..59ce460 100644
--- a/src/script/qscriptengine.cpp
+++ b/src/script/qscriptengine.cpp
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
\brief The QScriptEngine class provides an environment for evaluating Qt Script code.
\ingroup script
- \mainclass
+
See the \l{QtScript} documentation for information about the Qt Script language,
and how to get started with scripting your C++ application.
@@ -1342,7 +1342,7 @@ QStringList QScriptEngine::importedExtensions() const
Additionally, the type of each element in the sequence should be suitable
for conversion to a QScriptValue.
- See \l{QtScript Module#Conversion Between QtScript and C++ Types}
+ See \l{Making Applications Scriptable#Conversion Between QtScript and C++ Types}
{Conversion Between QtScript and C++ Types} for more information about the
restrictions on types that can be used with QScriptValue.
@@ -1363,7 +1363,7 @@ QStringList QScriptEngine::importedExtensions() const
Additionally, the type of each element in the sequence must be suitable
for conversion to a C++ type from a QScriptValue.
- See \l{QtScript Module#Conversion Between QtScript and C++ Types}
+ See \l{Making Applications Scriptable#Conversion Between QtScript and C++ Types}
{Conversion Between QtScript and C++ Types} for more information about the
restrictions on types that can be used with QScriptValue.
@@ -1758,7 +1758,7 @@ QScriptValue QScriptEngine::objectById(qint64 id) const
\brief The QScriptSyntaxCheckResult class provides the result of a script syntax check.
\ingroup script
- \mainclass
+
QScriptSyntaxCheckResult is returned by QScriptEngine::checkSyntax() to
provide information about the syntactical (in)correctness of a script.
diff --git a/src/script/qscriptengineagent.cpp b/src/script/qscriptengineagent.cpp
index e71c97a..b4793ab 100644
--- a/src/script/qscriptengineagent.cpp
+++ b/src/script/qscriptengineagent.cpp
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
\brief The QScriptEngineAgent class provides an interface to report events pertaining to QScriptEngine execution.
\ingroup script
- \mainclass
+
The QScriptEngineAgent class is the basis of tools that monitor and/or control the execution of a
QScriptEngine, such as debuggers and profilers.
diff --git a/src/script/qscriptstring.cpp b/src/script/qscriptstring.cpp
index f8e1c82..7d8d4e9 100644
--- a/src/script/qscriptstring.cpp
+++ b/src/script/qscriptstring.cpp
@@ -61,7 +61,7 @@ QT_BEGIN_NAMESPACE
\brief The QScriptString class acts as a handle to "interned" strings in a QScriptEngine.
\ingroup script
- \mainclass
+
QScriptString can be used to achieve faster (repeated)
property getting/setting, and comparison of property names, of
diff --git a/src/script/qscriptvalue.cpp b/src/script/qscriptvalue.cpp
index da43fc2..b70afe5 100644
--- a/src/script/qscriptvalue.cpp
+++ b/src/script/qscriptvalue.cpp
@@ -64,7 +64,7 @@ QT_BEGIN_NAMESPACE
\brief The QScriptValue class acts as a container for the Qt Script data types.
\ingroup script
- \mainclass
+
QScriptValue supports the types defined in the \l{ECMA-262}
standard: The primitive types, which are Undefined, Null, Boolean,
diff --git a/src/script/qscriptvalueiterator.cpp b/src/script/qscriptvalueiterator.cpp
index 8bc668f..885f9c9 100644
--- a/src/script/qscriptvalueiterator.cpp
+++ b/src/script/qscriptvalueiterator.cpp
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
\brief The QScriptValueIterator class provides a Java-style iterator for QScriptValue.
\ingroup script
- \mainclass
+
The QScriptValueIterator constructor takes a QScriptValue as
argument. After construction, the iterator is located at the very