From a604e4a60d614e9a2fdd92a370909d1450a54a2d Mon Sep 17 00:00:00 2001 From: Frederik Schwarzer Date: Sat, 7 Feb 2009 01:12:28 +0000 Subject: [PATCH] global typo fix svn path=/trunk/KDE/kdebase/workspace/; revision=922431 --- activation.cpp | 2 +- events.cpp | 2 +- geometry.cpp | 2 +- group.cpp | 2 +- kcmkwin/kwincompositing/main.cpp | 2 +- workspace.cpp | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/activation.cpp b/activation.cpp index a92cd36db3..a1eddf6dd9 100644 --- a/activation.cpp +++ b/activation.cpp @@ -116,7 +116,7 @@ namespace KWin Since at this time it's known that the new window doesn't belong to any existing application (better said, the application doesn't have any other window mapped), it is either the very first window - of the application, or its the only window of the application + of the application, or it is the only window of the application that was hidden before. The latter case is handled by removing the property from windows before withdrawing them, making the timestamp empty for next mapping of the window. In the sooner diff --git a/events.cpp b/events.cpp index a6cc98fac3..a8764df70d 100644 --- a/events.cpp +++ b/events.cpp @@ -744,7 +744,7 @@ bool Client::mapRequestEvent( XMapRequestEvent* e ) { // Special support for the save-set feature, which is a bit broken. // If there's a window from one client embedded in another one, - // e.g. using XEMBED, and the embedder suddenly looses its X connection, + // e.g. using XEMBED, and the embedder suddenly loses its X connection, // save-set will reparent the embedded window to its closest ancestor // that will remains. Unfortunately, with reparenting window managers, // this is not the root window, but the frame (or in KWin's case, diff --git a/geometry.cpp b/geometry.cpp index a8d9222995..6c8b554876 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -2267,7 +2267,7 @@ bool Client::isFullScreenable( bool fullscreen_hack ) const return isNormalWindow(); if( rules()->checkStrictGeometry( false )) { - // the app wouldn't fit exactly fullscreen geometry due its strict geometry requirements + // the app wouldn't fit exactly fullscreen geometry due to its strict geometry requirements QRect fsarea = workspace()->clientArea( FullScreenArea, this ); if( sizeForClientSize( fsarea.size(), SizemodeAny, true ) != fsarea.size()) return false; diff --git a/group.cpp b/group.cpp index 0b90b2ca5b..1d68db47f7 100644 --- a/group.cpp +++ b/group.cpp @@ -1050,7 +1050,7 @@ void Client::checkGroup( Group* set_group, bool force ) } else // Not transient without a group, put it in its client leader group. { // This might be stupid if grouping was used for e.g. taskbar grouping - // or minimizing together the whole group, but as long as its used + // or minimizing together the whole group, but as long as it is used // only for dialogs it's better to keep windows from one app in one group. Group* new_group = workspace()->findClientLeaderGroup( this ); if( in_group != NULL && in_group != new_group ) diff --git a/kcmkwin/kwincompositing/main.cpp b/kcmkwin/kwincompositing/main.cpp index af16574f48..6b2fa1b0bd 100644 --- a/kcmkwin/kwincompositing/main.cpp +++ b/kcmkwin/kwincompositing/main.cpp @@ -549,7 +549,7 @@ void KWinCompositingConfig::save() mPreviousConfig = config.entryMap(); // bah; tab content being dependent on the other is really bad; and - // deprecated in the HIG for a reason. Its confusing! + // deprecated in the HIG for a reason. It is confusing! // Make sure we only call save on each tab once; as they are stateful due to the revert concept if ( ui.tabWidget->currentIndex() == 0 ) // "General" tab was active { diff --git a/workspace.cpp b/workspace.cpp index e5a9e0142e..132dcd2828 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -2433,7 +2433,7 @@ void Workspace::setupTopMenuHandling() int Workspace::topMenuHeight() const { if( topmenu_height == 0 ) - { // Simply create a dummy menubar and use its preffered height as the menu height + { // Simply create a dummy menubar and use its preferred height as the menu height KMenuBar tmpmenu; tmpmenu.addAction( "dummy" ); topmenu_height = tmpmenu.sizeHint().height();