[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    playground/devtools/binspekt
From:       Friedrich W. H. Kossebau <kossebau () kde ! org>
Date:       2009-07-31 23:12:21
Message-ID: 1249081941.127069.16371.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 1005404 by kossebau:

changed: use CamelCase Kasten includes

 M  +1 -1      lib/core/document/bfddocument.h  
 M  +1 -1      lib/core/document/bfddocumentfactory.h  
 M  +1 -1      lib/core/document/sectionlistmodel.h  
 M  +1 -1      lib/core/document/symbollistmodel.h  
 M  +1 -1      lib/core/io/filesystem/bfdfileloadjob.h  
 M  +1 -1      lib/core/io/filesystem/bfdfilereloadjob.h  
 M  +1 -1      lib/core/io/filesystem/bfdfilesynchronizer.h  
 M  +1 -1      lib/core/io/filesystem/bfdfilesynchronizerfactory.h  
 M  +2 -2      lib/gui/view/bfdview.h  
 M  +1 -1      lib/gui/view/bfdviewfactory.h  
 M  +2 -2      lib/gui/view/sectionlistview.h  
 M  +2 -2      lib/gui/view/symbollistview.h  
 M  +1 -1      program/mainwindow.h  
 M  +4 -4      program/program.cpp  


--- trunk/playground/devtools/binspekt/lib/core/document/bfddocument.h \
#1005403:1005404 @@ -26,7 +26,7 @@
 // lib
 #include <binspektcore_export.h>
 // Kasten core
-#include <abstractdocument.h>
+#include <Kasten/AbstractDocument>
 // Qt
 #include <QtCore/QString>
 
--- trunk/playground/devtools/binspekt/lib/core/document/bfddocumentfactory.h \
#1005403:1005404 @@ -26,7 +26,7 @@
 // lib
 #include <binspektcore_export.h>
 // Kasten core
-#include <abstractdocumentfactory.h>
+#include <Kasten/AbstractDocumentFactory>
 
 
 namespace Kasten
--- trunk/playground/devtools/binspekt/lib/core/document/sectionlistmodel.h \
#1005403:1005404 @@ -26,7 +26,7 @@
 // lib
 #include <binspektcore_export.h>
 // Kasten core
-#include <abstractmodel.h>
+#include <Kasten/AbstractModel>
 // Qt
 #include <QtCore/QString>
 
--- trunk/playground/devtools/binspekt/lib/core/document/symbollistmodel.h \
#1005403:1005404 @@ -26,7 +26,7 @@
 // lib
 #include <binspektcore_export.h>
 // Kasten core
-#include <abstractmodel.h>
+#include <Kasten/AbstractModel>
 // Qt
 #include <QtCore/QString>
 
--- trunk/playground/devtools/binspekt/lib/core/io/filesystem/bfdfileloadjob.h \
#1005403:1005404 @@ -24,7 +24,7 @@
 #define BFDFILELOADJOB_H
 
 // Kasten core
-#include <abstractfilesystemloadjob.h>
+#include <Kasten/AbstractFileSystemLoadJob>
 
 
 namespace Kasten
--- trunk/playground/devtools/binspekt/lib/core/io/filesystem/bfdfilereloadjob.h \
#1005403:1005404 @@ -24,7 +24,7 @@
 #define BFDFILERELOADJOB_H
 
 // Kasten core
-#include <abstractfilesystemsyncfromremotejob.h>
+#include <Kasten/AbstractFileSystemSyncFromRemoteJob>
 
 
 namespace Kasten
--- trunk/playground/devtools/binspekt/lib/core/io/filesystem/bfdfilesynchronizer.h \
#1005403:1005404 @@ -24,7 +24,7 @@
 #define BFDFILESYNCHRONIZER_H
 
 // Kasten core
-#include <abstractmodelfilesystemsynchronizer.h>
+#include <Kasten/AbstractModelFileSystemSynchronizer>
 
 
 namespace Kasten
--- trunk/playground/devtools/binspekt/lib/core/io/filesystem/bfdfilesynchronizerfactory.h \
#1005403:1005404 @@ -26,7 +26,7 @@
 // lib
 #include <binspektcore_export.h>
 // Kasten core
-#include <abstractmodelsynchronizerfactory.h>
+#include <Kasten/AbstractModelSynchronizerFactory>
 
 
 namespace Kasten
--- trunk/playground/devtools/binspekt/lib/gui/view/bfdview.h #1005403:1005404
@@ -27,8 +27,8 @@
 #include <binspektgui_export.h>
 // #include <bfdselection.h>
 // Kasten gui
-#include <abstractview.h>
-#include <dataselectable.h>
+#include <Kasten/AbstractView>
+#include <Kasten/DataSelectable>
 
 class QSplitter;
 
--- trunk/playground/devtools/binspekt/lib/gui/view/bfdviewfactory.h #1005403:1005404
@@ -26,7 +26,7 @@
 // lib
 #include <binspektgui_export.h>
 // Kasten gui
-#include <abstractviewfactory.h>
+#include <Kasten/AbstractViewFactory>
 
 
 namespace Kasten
--- trunk/playground/devtools/binspekt/lib/gui/view/sectionlistview.h \
#1005403:1005404 @@ -26,8 +26,8 @@
 // lib
 // #include <bfdselection.h>
 // Kasten gui
-#include <abstractview.h>
-#include <dataselectable.h>
+#include <Kasten/AbstractView>
+#include <Kasten/DataSelectable>
 
 class SectionTableModel;
 class QSortFilterProxyModel;
--- trunk/playground/devtools/binspekt/lib/gui/view/symbollistview.h #1005403:1005404
@@ -26,8 +26,8 @@
 // lib
 // #include <bfdselection.h>
 // Kasten gui
-#include <abstractview.h>
-#include <dataselectable.h>
+#include <Kasten/AbstractView>
+#include <Kasten/DataSelectable>
 
 class SymbolTableModel;
 class QTreeView;
--- trunk/playground/devtools/binspekt/program/mainwindow.h #1005403:1005404
@@ -24,7 +24,7 @@
 #define BINSPEKTMAINWINDOW_H
 
 // Kasten gui
-#include <shellwindow.h>
+#include <Kasten/ShellWindow>
 
 
 namespace Kasten
--- trunk/playground/devtools/binspekt/program/program.cpp #1005403:1005404
@@ -31,11 +31,11 @@
 // BFD
 #include <bfd.h>
 // Kasten gui
-#include <viewmanager.h>
+#include <Kasten/ViewManager>
 // Kasten core
-#include <documentmanager.h>
-#include <documentcreatemanager.h>
-#include <documentsyncmanager.h>
+#include <Kasten/DocumentManager>
+#include <Kasten/DocumentCreateManager>
+#include <Kasten/DocumentSyncManager>
 // KDE
 #include <KLocale>
 #include <KUrl>


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic