aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/NativeWindowSystem.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-26 14:43:47 -0400
committerKen Moore <ken@ixsystems.com>2017-06-26 14:43:47 -0400
commit01b8ec846504b1a13b8523048fbe8bc1171a00e4 (patch)
tree2619fd7a15cad38e084af01c61ce908faf6874c7 /src-qt5/core/libLumina/NativeWindowSystem.h
parentNuke some old reference files in the lumina-desktop-unified directory (not used) (diff)
downloadlumina-01b8ec846504b1a13b8523048fbe8bc1171a00e4.tar.gz
lumina-01b8ec846504b1a13b8523048fbe8bc1171a00e4.tar.bz2
lumina-01b8ec846504b1a13b8523048fbe8bc1171a00e4.zip
Tag version 1.3.1 in the source tree (no differences from 1.3.0 yet)
Diffstat (limited to 'src-qt5/core/libLumina/NativeWindowSystem.h')
-rw-r--r--src-qt5/core/libLumina/NativeWindowSystem.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src-qt5/core/libLumina/NativeWindowSystem.h b/src-qt5/core/libLumina/NativeWindowSystem.h
index 59e54ca4..5ac9c288 100644
--- a/src-qt5/core/libLumina/NativeWindowSystem.h
+++ b/src-qt5/core/libLumina/NativeWindowSystem.h
@@ -23,20 +23,20 @@ private:
//Simplifications to find an already-created window object
NativeWindow* findWindow(WId id){
- for(int i=0; i<NWindows.length(); i++){
- if(id==NWindows[i]->id()){ return NWindows[i]; }
+ for(int i=0; i<NWindows.length(); i++){
+ if(id==NWindows[i]->id()){ return NWindows[i]; }
}
return 0;
}
NativeWindow* findTrayWindow(WId id){
- for(int i=0; i<TWindows.length(); i++){
- if(id==TWindows[i]->id()){ return TWindows[i]; }
+ for(int i=0; i<TWindows.length(); i++){
+ if(id==TWindows[i]->id()){ return TWindows[i]; }
}
return 0;
}
- //Now define a simple private_objects class so that each implementation
+ //Now define a simple private_objects class so that each implementation
// has a storage container for defining/placing private objects as needed
class p_objects;
p_objects* obj;
@@ -58,7 +58,7 @@ private:
}
}
- // Since some properties may be easier to update in bulk
+ // Since some properties may be easier to update in bulk
// let the native system interaction do them in whatever logical groups are best
void UpdateWindowProperties(NativeWindow* win, QList< NativeWindow::Property > props);
bgstack15