a few typos

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=770891
This commit is contained in:
Anne-Marie Mahfouf 2008-02-04 16:26:49 +00:00
parent 8a15088888
commit 782bcbce51
3 changed files with 8 additions and 8 deletions

View File

@ -28,7 +28,7 @@ namespace Plasma
{ {
/** /**
* @short Plasma Applet that is fully rendererd using OpengGL * @short Plasma Applet that is fully rendered using OpengGL
* *
*/ */
class PLASMA_EXPORT GLApplet : public Applet class PLASMA_EXPORT GLApplet : public Applet

View File

@ -32,7 +32,7 @@ namespace Plasma
{ {
/** /**
* The Constriants enumeration lists the various constraints that Plasma * The Constraint enumeration lists the various constraints that Plasma
* objects have managed for them and which they may wish to react to, * objects have managed for them and which they may wish to react to,
* for instance in Applet::constraintsUpdated * for instance in Applet::constraintsUpdated
*/ */
@ -64,7 +64,7 @@ enum FormFactor { Planar = 0 /**< The applet lives in a plane and has two
referred to as a "ten foot interface".*/, referred to as a "ten foot interface".*/,
Horizontal /**< The applet is constrained vertically, but Horizontal /**< The applet is constrained vertically, but
can expand horizontally. */, can expand horizontally. */,
Vertical /**< The applet is contrained horizontally, but Vertical /**< The applet is constrained horizontally, but
can expand vertically. */ can expand vertically. */
}; };

View File

@ -85,7 +85,7 @@ class PLASMA_EXPORT SearchContext : public QObject
* The mimetype that the search term refers to, if discoverable. * The mimetype that the search term refers to, if discoverable.
* *
* @return QString() if the mimetype can not be determined, otherwise * @return QString() if the mimetype can not be determined, otherwise
* the mimetype of the object being refered to by the search * the mimetype of the object being referred to by the search
* string. * string.
*/ */
QString mimetype() const; QString mimetype() const;
@ -106,8 +106,8 @@ class PLASMA_EXPORT SearchContext : public QObject
void addStringCompletions(const QStringList& completions); void addStringCompletions(const QStringList& completions);
/** /**
* Add an action that represents a match to the current search term. * Adds an action that represents a match to the current search term.
* This action is informational in nature and does not represent and actionable * This action is informational in nature and does not represent an actionable
* match. * match.
* *
* If string data is added to the action using QAction::setData(), that * If string data is added to the action using QAction::setData(), that
@ -116,12 +116,12 @@ class PLASMA_EXPORT SearchContext : public QObject
SearchMatch* addInformationalMatch(AbstractRunner *runner); SearchMatch* addInformationalMatch(AbstractRunner *runner);
/** /**
* Add an action that represents an exact match to the current search term. * Adds an action that represents an exact match to the current search term.
*/ */
SearchMatch* addExactMatch(AbstractRunner *runner); SearchMatch* addExactMatch(AbstractRunner *runner);
/** /**
* Add an action that represents a possible match to the current search term. * Adds an action that represents a possible match to the current search term.
*/ */
SearchMatch* addPossibleMatch(AbstractRunner *runner); SearchMatch* addPossibleMatch(AbstractRunner *runner);