diff options
| author | 2011-01-01 20:19:56 +0000 | |
|---|---|---|
| committer | 2011-01-01 20:19:56 +0000 | |
| commit | c601b5a27f74b16158adafe429faefbe573e64a2 (patch) | |
| tree | a3cde3206a45628f8ac86e8dfbdab70b20c3a831 /src/modules/upnp | |
| parent | probable compilation fix for rijndaled/crypto++ (diff) | |
| download | KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.tar.gz KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.tar.bz2 KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.zip | |
The big rename for modules. Still some details remaining.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5284 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/upnp')
| -rw-r--r-- | src/modules/upnp/CMakeLists.txt | 18 | ||||
| -rw-r--r-- | src/modules/upnp/Manager.cpp (renamed from src/modules/upnp/manager.cpp) | 8 | ||||
| -rw-r--r-- | src/modules/upnp/Manager.h (renamed from src/modules/upnp/manager.h) | 6 | ||||
| -rw-r--r-- | src/modules/upnp/RootService.cpp (renamed from src/modules/upnp/rootservice.cpp) | 8 | ||||
| -rw-r--r-- | src/modules/upnp/RootService.h (renamed from src/modules/upnp/rootservice.h) | 6 | ||||
| -rw-r--r-- | src/modules/upnp/Service.cpp (renamed from src/modules/upnp/service.cpp) | 8 | ||||
| -rw-r--r-- | src/modules/upnp/Service.h (renamed from src/modules/upnp/service.h) | 4 | ||||
| -rw-r--r-- | src/modules/upnp/SsdpConnection.cpp (renamed from src/modules/upnp/ssdpconnection.cpp) | 6 | ||||
| -rw-r--r-- | src/modules/upnp/SsdpConnection.h (renamed from src/modules/upnp/ssdpconnection.h) | 4 | ||||
| -rw-r--r-- | src/modules/upnp/WanConnectionService.cpp (renamed from src/modules/upnp/wanconnectionservice.cpp) | 6 | ||||
| -rw-r--r-- | src/modules/upnp/WanConnectionService.h (renamed from src/modules/upnp/wanconnectionservice.h) | 6 | ||||
| -rw-r--r-- | src/modules/upnp/XmlFunctions.cpp (renamed from src/modules/upnp/xmlfunctions.cpp) | 6 | ||||
| -rw-r--r-- | src/modules/upnp/XmlFunctions.h (renamed from src/modules/upnp/xmlfunctions.h) | 4 | ||||
| -rw-r--r-- | src/modules/upnp/igdcontrolpoint.cpp | 4 | ||||
| -rw-r--r-- | src/modules/upnp/libkviupnp.cpp | 2 |
15 files changed, 48 insertions, 48 deletions
diff --git a/src/modules/upnp/CMakeLists.txt b/src/modules/upnp/CMakeLists.txt index 94274cf22..77f3ad4a7 100644 --- a/src/modules/upnp/CMakeLists.txt +++ b/src/modules/upnp/CMakeLists.txt @@ -3,19 +3,19 @@ SET(kviupnp_SRCS igdcontrolpoint.cpp libkviupnp.cpp - manager.cpp - rootservice.cpp - service.cpp - ssdpconnection.cpp - wanconnectionservice.cpp - xmlfunctions.cpp + Manager.cpp + RootService.cpp + Service.cpp + SsdpConnection.cpp + WanConnectionService.cpp + XmlFunctions.cpp ) SET(kviupnp_MOC_HDRS igdcontrolpoint.h - manager.h - service.h - ssdpconnection.h + Manager.h + Service.h + SsdpConnection.h ) # After this call, files will be moc'ed to moc_kvi_*.cpp diff --git a/src/modules/upnp/manager.cpp b/src/modules/upnp/Manager.cpp index 842ed5686..ebb4d09ab 100644 --- a/src/modules/upnp/manager.cpp +++ b/src/modules/upnp/Manager.cpp @@ -1,6 +1,6 @@ //============================================================================= // -// File : manager.cpp +// File : Manager.cpp // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,17 +24,17 @@ //============================================================================= /*************************************************************************** - manager.cpp - description + Manager.cpp - description ------------------- begin : Fri Aug 05 2005 copyright : (C) 2005 by Diederik van der Boor email : vdboor --at-- codingdomain.com ***************************************************************************/ -#include "manager.h" +#include "Manager.h" #include "igdcontrolpoint.h" -#include "ssdpconnection.h" +#include "SsdpConnection.h" #include <QDebug> #include <QTimer> diff --git a/src/modules/upnp/manager.h b/src/modules/upnp/Manager.h index 3cc6d7b4e..af6ce7569 100644 --- a/src/modules/upnp/manager.h +++ b/src/modules/upnp/Manager.h @@ -1,6 +1,6 @@ //============================================================================= // -// File : manager.h +// File : Manager.h // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,7 +24,7 @@ //============================================================================= /*************************************************************************** - manager.h - description + Manager.h - description ------------------- begin : Fri Aug 05 2005 copyright : (C) 2005 by Diederik van der Boor @@ -39,7 +39,7 @@ #include "KviPointerList.h" #include "igdcontrolpoint.h" -#include "ssdpconnection.h" +#include "SsdpConnection.h" namespace UPnP { diff --git a/src/modules/upnp/rootservice.cpp b/src/modules/upnp/RootService.cpp index 3911a7cbc..3deb04341 100644 --- a/src/modules/upnp/rootservice.cpp +++ b/src/modules/upnp/RootService.cpp @@ -1,6 +1,6 @@ //============================================================================= // -// File : rootservice.cpp +// File : RootService.cpp // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,15 +24,15 @@ //============================================================================= /*************************************************************************** - rootservice.cpp - description + RootService.cpp - description ------------------- begin : Mon Jul 25 2005 copyright : (C) 2005 by Diederik van der Boor email : vdboor --at-- codingdomain.com ***************************************************************************/ -#include "rootservice.h" -#include "xmlfunctions.h" +#include "RootService.h" +#include "XmlFunctions.h" #include "KviLocale.h" #include "kvi_out.h" #include "KviApplication.h" diff --git a/src/modules/upnp/rootservice.h b/src/modules/upnp/RootService.h index d75bb581b..204bfda33 100644 --- a/src/modules/upnp/rootservice.h +++ b/src/modules/upnp/RootService.h @@ -1,6 +1,6 @@ //============================================================================= // -// File : rootservice.h +// File : RootService.h // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,7 +24,7 @@ //============================================================================= /*************************************************************************** - rootservice.h - description + RootService.h - description ------------------- begin : Mon Jul 25 2005 copyright : (C) 2005 by Diederik van der Boor @@ -34,7 +34,7 @@ #ifndef UPNP_ROOTSERVICE_H #define UPNP_ROOTSERVICE_H -#include "service.h" +#include "Service.h" namespace UPnP diff --git a/src/modules/upnp/service.cpp b/src/modules/upnp/Service.cpp index dd1b99998..b29255e16 100644 --- a/src/modules/upnp/service.cpp +++ b/src/modules/upnp/Service.cpp @@ -1,6 +1,6 @@ //============================================================================= // -// File : service.cpp +// File : Service.cpp // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,15 +24,15 @@ //============================================================================= /*************************************************************************** - service.cpp - description + Service.cpp - description ------------------- begin : Sun Jul 24 2005 copyright : (C) 2005 by Diederik van der Boor email : vdboor --at-- codingdomain.com ***************************************************************************/ -#include "service.h" -#include "xmlfunctions.h" +#include "Service.h" +#include "XmlFunctions.h" #include <QDebug> #include <QHttp> diff --git a/src/modules/upnp/service.h b/src/modules/upnp/Service.h index 66e0d4f79..b06758b90 100644 --- a/src/modules/upnp/service.h +++ b/src/modules/upnp/Service.h @@ -1,6 +1,6 @@ //============================================================================= // -// File : service.h +// File : Service.h // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,7 +24,7 @@ //============================================================================= /*************************************************************************** - service.h - description + Service.h - description ------------------- begin : Sun Jul 24 2005 copyright : (C) 2005 by Diederik van der Boor diff --git a/src/modules/upnp/ssdpconnection.cpp b/src/modules/upnp/SsdpConnection.cpp index 821530e06..d1b612445 100644 --- a/src/modules/upnp/ssdpconnection.cpp +++ b/src/modules/upnp/SsdpConnection.cpp @@ -1,6 +1,6 @@ //============================================================================= // -// File : ssdpconnection.cpp +// File : SsdpConnection.cpp // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,14 +24,14 @@ //============================================================================= /*************************************************************************** - ssdpconnection.cpp - description + SsdpConnection.cpp - description ------------------- begin : Fri Jul 29 2005 copyright : (C) 2005 by Diederik van der Boor email : vdboor --at-- codingdomain.com ***************************************************************************/ -#include "ssdpconnection.h" +#include "SsdpConnection.h" #include <QHostAddress> #include <QUdpSocket> diff --git a/src/modules/upnp/ssdpconnection.h b/src/modules/upnp/SsdpConnection.h index a73414fd9..bd81d4b75 100644 --- a/src/modules/upnp/ssdpconnection.h +++ b/src/modules/upnp/SsdpConnection.h @@ -1,6 +1,6 @@ //============================================================================= // -// File : ssdpconnection.h +// File : SsdpConnection.h // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,7 +24,7 @@ //============================================================================= /*************************************************************************** - ssdpconnection.h - description + SsdpConnection.h - description ------------------- begin : Fri Jul 29 2005 copyright : (C) 2005 by Diederik van der Boor diff --git a/src/modules/upnp/wanconnectionservice.cpp b/src/modules/upnp/WanConnectionService.cpp index ddeb17e47..0396244ba 100644 --- a/src/modules/upnp/wanconnectionservice.cpp +++ b/src/modules/upnp/WanConnectionService.cpp @@ -1,6 +1,6 @@ //============================================================================= // -// File : wanconnectionservice.cpp +// File : WanConnectionService.cpp // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,14 +24,14 @@ //============================================================================= /*************************************************************************** - wanconnectionservice.cpp - description + WanConnectionService.cpp - description ------------------- begin : Mon Jul 25 2005 copyright : (C) 2005 by Diederik van der Boor email : vdboor --at-- codingdomain.com ***************************************************************************/ -#include "wanconnectionservice.h" +#include "WanConnectionService.h" #include <QDebug> namespace UPnP diff --git a/src/modules/upnp/wanconnectionservice.h b/src/modules/upnp/WanConnectionService.h index 3dd88407f..5128464ea 100644 --- a/src/modules/upnp/wanconnectionservice.h +++ b/src/modules/upnp/WanConnectionService.h @@ -1,6 +1,6 @@ //============================================================================= // -// File : wanconnectionservice.h +// File : WanConnectionService.h // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,7 +24,7 @@ //============================================================================= /*************************************************************************** - wanconnectionservice.h - description + WanConnectionService.h - description ------------------- begin : Mon Jul 25 2005 copyright : (C) 2005 by Diederik van der Boor @@ -34,7 +34,7 @@ #ifndef UPNP_WANCONNECTIONSERVICE_H #define UPNP_WANCONNECTIONSERVICE_H -#include "service.h" +#include "Service.h" #include "KviPointerList.h" namespace UPnP diff --git a/src/modules/upnp/xmlfunctions.cpp b/src/modules/upnp/XmlFunctions.cpp index 563aaec4a..59d79e3fc 100644 --- a/src/modules/upnp/xmlfunctions.cpp +++ b/src/modules/upnp/XmlFunctions.cpp @@ -1,6 +1,6 @@ //============================================================================= // -// File : xmlfunctions.cpp +// File : XmlFunctions.cpp // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,14 +24,14 @@ //============================================================================= /*************************************************************************** - xmlfunctions.cpp - description + XmlFunctions.cpp - description ------------------- begin : Sun Jul 24 2005 copyright : (C) 2005 by Diederik van der Boor email : vdboor --at-- codingdomain.com ***************************************************************************/ -#include "xmlfunctions.h" +#include "XmlFunctions.h" #include <QStringList> diff --git a/src/modules/upnp/xmlfunctions.h b/src/modules/upnp/XmlFunctions.h index 751b06554..9161b2222 100644 --- a/src/modules/upnp/xmlfunctions.h +++ b/src/modules/upnp/XmlFunctions.h @@ -1,6 +1,6 @@ //============================================================================= // -// File : xmlfunctions.h +// File : XmlFunctions.h // Creation date : Fri Aug 08 18:00:00 2008 GMT by Fabio Bas // // This file is part of the KVIrc irc client distribution @@ -24,7 +24,7 @@ //============================================================================= /*************************************************************************** - xmlfunctions.cpp - description + XmlFunctions.cpp - description ------------------- begin : Sun Jul 24 2005 copyright : (C) 2005 by Diederik van der Boor diff --git a/src/modules/upnp/igdcontrolpoint.cpp b/src/modules/upnp/igdcontrolpoint.cpp index e9eeaf8d0..8642a3a3d 100644 --- a/src/modules/upnp/igdcontrolpoint.cpp +++ b/src/modules/upnp/igdcontrolpoint.cpp @@ -35,8 +35,8 @@ #include "igdcontrolpoint.h" -#include "rootservice.h" -#include "wanconnectionservice.h" +#include "RootService.h" +#include "WanConnectionService.h" namespace UPnP { diff --git a/src/modules/upnp/libkviupnp.cpp b/src/modules/upnp/libkviupnp.cpp index a66605041..703325300 100644 --- a/src/modules/upnp/libkviupnp.cpp +++ b/src/modules/upnp/libkviupnp.cpp @@ -27,7 +27,7 @@ #include "KviCString.h" #include "KviNetUtils.h" -#include "manager.h" +#include "Manager.h" // Please use our common variable naming conventions and coding style :) // Let's be so:) |
