From 482beac59e43d21c929b41387a4ebfae8266e214 Mon Sep 17 00:00:00 2001
From: Emmanuel Lepage Vallee <emmanuel.lepage@savoirfairelinux.com>
Date: Thu, 26 Jul 2012 11:54:02 -0400
Subject: [PATCH] [ #13801 ] Remove caps from file

---
 src/CMakeLists.txt                            | 56 +++++++++----------
 src/{Account.cpp => account.cpp}              | 10 ++--
 src/{Account.h => account.h}                  |  2 +-
 src/{AccountList.cpp => accountlist.cpp}      |  4 +-
 src/{AccountList.h => accountlist.h}          |  2 +-
 ...udioCodecModel.cpp => audiocodecmodel.cpp} |  2 +-
 src/{AudioCodecModel.h => audiocodecmodel.h}  |  0
 src/{Call.cpp => call.cpp}                    | 14 ++---
 src/{Call.h => call.h}                        |  0
 src/{CallModel.cpp => callmodel.cpp}          |  4 +-
 src/{CallModel.h => callmodel.h}              |  2 +-
 src/{CallModel.hpp => callmodel.hpp}          |  6 +-
 src/{Contact.cpp => contact.cpp}              |  2 +-
 src/{Contact.h => contact.h}                  |  0
 ...{ContactBackend.cpp => contactbackend.cpp} |  4 +-
 src/{ContactBackend.h => contactbackend.h}    |  2 +-
 ...redentialModel.cpp => credentialmodel.cpp} |  2 +-
 src/{CredentialModel.h => credentialmodel.h}  |  0
 src/{HistoryModel.cpp => historymodel.cpp}    |  4 +-
 src/{HistoryModel.h => historymodel.h}        |  0
 ...ingModel.cpp => instantmessagingmodel.cpp} |  6 +-
 ...ssagingModel.h => instantmessagingmodel.h} |  0
 ...ideoCodecModel.cpp => videocodecmodel.cpp} |  6 +-
 src/{VideoCodecModel.h => videocodecmodel.h}  |  0
 src/{VideoDevice.cpp => videodevice.cpp}      |  2 +-
 src/{VideoDevice.h => videodevice.h}          |  0
 src/{VideoModel.cpp => videomodel.cpp}        | 10 ++--
 src/{VideoModel.h => videomodel.h}            |  2 +-
 src/{VideoRenderer.cpp => videorenderer.cpp}  |  2 +-
 src/{VideoRenderer.h => videorenderer.h}      |  2 +-
 30 files changed, 73 insertions(+), 73 deletions(-)
 rename src/{Account.cpp => account.cpp} (99%)
 rename src/{Account.h => account.h} (99%)
 rename src/{AccountList.cpp => accountlist.cpp} (99%)
 rename src/{AccountList.h => accountlist.h} (99%)
 rename src/{AudioCodecModel.cpp => audiocodecmodel.cpp} (99%)
 rename src/{AudioCodecModel.h => audiocodecmodel.h} (100%)
 rename src/{Call.cpp => call.cpp} (99%)
 rename src/{Call.h => call.h} (100%)
 rename src/{CallModel.cpp => callmodel.cpp} (99%)
 rename src/{CallModel.h => callmodel.h} (99%)
 rename src/{CallModel.hpp => callmodel.hpp} (99%)
 rename src/{Contact.cpp => contact.cpp} (99%)
 rename src/{Contact.h => contact.h} (100%)
 rename src/{ContactBackend.cpp => contactbackend.cpp} (98%)
 rename src/{ContactBackend.h => contactbackend.h} (99%)
 rename src/{CredentialModel.cpp => credentialmodel.cpp} (99%)
 rename src/{CredentialModel.h => credentialmodel.h} (100%)
 rename src/{HistoryModel.cpp => historymodel.cpp} (99%)
 rename src/{HistoryModel.h => historymodel.h} (100%)
 rename src/{InstantMessagingModel.cpp => instantmessagingmodel.cpp} (98%)
 rename src/{InstantMessagingModel.h => instantmessagingmodel.h} (100%)
 rename src/{VideoCodecModel.cpp => videocodecmodel.cpp} (98%)
 rename src/{VideoCodecModel.h => videocodecmodel.h} (100%)
 rename src/{VideoDevice.cpp => videodevice.cpp} (99%)
 rename src/{VideoDevice.h => videodevice.h} (100%)
 rename src/{VideoModel.cpp => videomodel.cpp} (97%)
 rename src/{VideoModel.h => videomodel.h} (99%)
 rename src/{VideoRenderer.cpp => videorenderer.cpp} (99%)
 rename src/{VideoRenderer.h => videorenderer.h} (99%)

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index c530f523..6032a4e6 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -26,20 +26,20 @@ INCLUDE_DIRECTORIES ( ${QT_INCLUDES} ${CMAKE_CURRENT_BINARY_DIR})
 
 #File to compile
 set( qtsflphone_LIB_SRCS
-  Call.cpp
-  Account.cpp
-  AccountList.cpp
-  CallModel.cpp
-  HistoryModel.cpp
-  Contact.cpp
-  ContactBackend.cpp
-  VideoCodecModel.cpp
-  VideoModel.cpp
-  VideoRenderer.cpp
-  VideoDevice.cpp
-  CredentialModel.cpp
-  AudioCodecModel.cpp
-  InstantMessagingModel.cpp
+  call.cpp
+  account.cpp
+  accountlist.cpp
+  callmodel.cpp
+  historymodel.cpp
+  contact.cpp
+  contactbackend.cpp
+  videocodecmodel.cpp
+  videomodel.cpp
+  videorenderer.cpp
+  videodevice.cpp
+  credentialmodel.cpp
+  audiocodecmodel.cpp
+  instantmessagingmodel.cpp
   configurationmanager_interface_singleton.cpp
   callmanager_interface_singleton.cpp
   instance_interface_singleton.cpp
@@ -120,25 +120,25 @@ set_target_properties( qtsflphone
 )
 
 set( qtsflphone_LIB_HDRS
-  Account.h
-  AccountList.h
-  Call.h
-  CallModel.h
-  HistoryModel.h
-  Contact.h
-  ContactBackend.h
-  VideoCodecModel.h
-  VideoModel.h
-  VideoDevice.h
-  VideoRenderer.h
-  CredentialModel.h
-  AudioCodecModel.h
+  account.h
+  accountlist.h
+  call.h
+  callmodel.h
+  historymodel.h
+  contact.h
+  contactbackend.h
+  videocodecmodel.h
+  videomodel.h
+  videodevice.h
+  videorenderer.h
+  credentialmodel.h
+  audiocodecmodel.h
   configurationmanager_interface_singleton.h
   callmanager_interface_singleton.h
   instance_interface_singleton.h
   video_interface_singleton.h
   sflphone_const.h
-  InstantMessagingModel.h
+  instantmessagingmodel.h
 )
 
 install( FILES ${qtsflphone_LIB_HDRS}
diff --git a/src/Account.cpp b/src/account.cpp
similarity index 99%
rename from src/Account.cpp
rename to src/account.cpp
index 4a851b32..24d05d13 100644
--- a/src/Account.cpp
+++ b/src/account.cpp
@@ -18,7 +18,7 @@
  ***************************************************************************/
 
 //Parent
-#include "Account.h"
+#include "account.h"
 
 //Qt
 #include <QtCore/QDebug>
@@ -31,10 +31,10 @@
 #include "configurationmanager_interface_singleton.h"
 #include "callmanager_interface_singleton.h"
 #include "video_interface_singleton.h"
-#include "AccountList.h"
-#include "CredentialModel.h"
-#include "AudioCodecModel.h"
-#include "VideoCodecModel.h"
+#include "accountlist.h"
+#include "credentialmodel.h"
+#include "audiocodecmodel.h"
+#include "videocodecmodel.h"
 
 const account_function Account::stateMachineActionsOnState[6][7] = {
 /*                 NOTHING              EDIT              RELOAD              SAVE               REMOVE             MODIFY             CANCEL            */
diff --git a/src/Account.h b/src/account.h
similarity index 99%
rename from src/Account.h
rename to src/account.h
index 7fb44f94..f4cd3d33 100644
--- a/src/Account.h
+++ b/src/account.h
@@ -26,7 +26,7 @@
 class QString;
 
 //SFLPhone
-#include "VideoCodecModel.h"
+#include "videocodecmodel.h"
 #include "sflphone_const.h"
 #include "typedefs.h"
 #include "dbus/metatypes.h"
diff --git a/src/AccountList.cpp b/src/accountlist.cpp
similarity index 99%
rename from src/AccountList.cpp
rename to src/accountlist.cpp
index 55456d4e..d2a09c49 100644
--- a/src/AccountList.cpp
+++ b/src/accountlist.cpp
@@ -18,8 +18,8 @@
  ***************************************************************************/
 
 //Parent
-#include "AccountList.h"
-
+#include "accountlist.h"
+ 
 //SFLPhone
 #include "sflphone_const.h"
 
diff --git a/src/AccountList.h b/src/accountlist.h
similarity index 99%
rename from src/AccountList.h
rename to src/accountlist.h
index 45337968..c7e41a45 100644
--- a/src/AccountList.h
+++ b/src/accountlist.h
@@ -24,7 +24,7 @@
 #include <QtCore/QVector>
 #include <QtCore/QAbstractListModel>
 
-#include "Account.h"
+#include "account.h"
 #include "typedefs.h"
 #include "dbus/metatypes.h"
 
diff --git a/src/AudioCodecModel.cpp b/src/audiocodecmodel.cpp
similarity index 99%
rename from src/AudioCodecModel.cpp
rename to src/audiocodecmodel.cpp
index 5d739387..e5bbe1c9 100644
--- a/src/AudioCodecModel.cpp
+++ b/src/audiocodecmodel.cpp
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License      *
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
  ***************************************************************************/
-#include "AudioCodecModel.h"
+#include "audiocodecmodel.h"
 
 //Qt
 #include <QtCore/QDebug>
diff --git a/src/AudioCodecModel.h b/src/audiocodecmodel.h
similarity index 100%
rename from src/AudioCodecModel.h
rename to src/audiocodecmodel.h
diff --git a/src/Call.cpp b/src/call.cpp
similarity index 99%
rename from src/Call.cpp
rename to src/call.cpp
index 3627c981..fb406f30 100644
--- a/src/Call.cpp
+++ b/src/call.cpp
@@ -18,17 +18,17 @@
  ***************************************************************************/
 
 //Parent
-#include "Call.h"
+#include "call.h"
 
 //SFLPhone library
 #include "callmanager_interface_singleton.h"
 #include "configurationmanager_interface_singleton.h"
-#include "ContactBackend.h"
-#include "Contact.h"
-#include "Account.h"
-#include "AccountList.h"
-#include "VideoModel.h"
-#include "InstantMessagingModel.h"
+#include "contactbackend.h"
+#include "contact.h"
+#include "account.h"
+#include "accountlist.h"
+#include "videomodel.h"
+#include "instantmessagingmodel.h"
 
 
 const call_state Call::actionPerformedStateMap [13][5] =
diff --git a/src/Call.h b/src/call.h
similarity index 100%
rename from src/Call.h
rename to src/call.h
diff --git a/src/CallModel.cpp b/src/callmodel.cpp
similarity index 99%
rename from src/CallModel.cpp
rename to src/callmodel.cpp
index c873e2a4..99153175 100644
--- a/src/CallModel.cpp
+++ b/src/callmodel.cpp
@@ -18,9 +18,9 @@
  ***************************************************************************/
 
 //Parent
-#include <CallModel.h>
+#include <callmodel.h>
 #include "video_interface_singleton.h"
-#include "HistoryModel.h"
+#include "historymodel.h"
 
 bool CallModelBase::dbusInit = false;
 CallMap CallModelBase::m_sActiveCalls;
diff --git a/src/CallModel.h b/src/callmodel.h
similarity index 99%
rename from src/CallModel.h
rename to src/callmodel.h
index ca61533c..ba101892 100644
--- a/src/CallModel.h
+++ b/src/callmodel.h
@@ -217,6 +217,6 @@ class LIB_EXPORT CallModel : public CallModelBase {
       Call* addCallCommon(Call* call);
       bool  updateCommon (Call* call);
 };
-#include "CallModel.hpp"
+#include "callmodel.hpp"
 
 #endif
diff --git a/src/CallModel.hpp b/src/callmodel.hpp
similarity index 99%
rename from src/CallModel.hpp
rename to src/callmodel.hpp
index 115c05e2..e01b429e 100644
--- a/src/CallModel.hpp
+++ b/src/callmodel.hpp
@@ -23,15 +23,15 @@
 #include <QtGui/QDragEnterEvent>
 
 //SFLPhone library
-#include "Call.h"
-#include "AccountList.h"
+#include "call.h"
+#include "accountlist.h"
 #include "dbus/metatypes.h"
 #include "callmanager_interface_singleton.h"
 #include "configurationmanager_interface_singleton.h"
 #include "instance_interface_singleton.h"
 #include "sflphone_const.h"
 #include "typedefs.h"
-#include "ContactBackend.h"
+#include "contactbackend.h"
 
 //System
 #include "unistd.h"
diff --git a/src/Contact.cpp b/src/contact.cpp
similarity index 99%
rename from src/Contact.cpp
rename to src/contact.cpp
index dc3be4cd..415c80ab 100644
--- a/src/Contact.cpp
+++ b/src/contact.cpp
@@ -18,7 +18,7 @@
  ***************************************************************************/
 
 //Parent
-#include "Contact.h"
+#include "contact.h"
 
 //Qt
 #include <QtGui/QPixmap>
diff --git a/src/Contact.h b/src/contact.h
similarity index 100%
rename from src/Contact.h
rename to src/contact.h
diff --git a/src/ContactBackend.cpp b/src/contactbackend.cpp
similarity index 98%
rename from src/ContactBackend.cpp
rename to src/contactbackend.cpp
index e230b27d..5eb36f34 100644
--- a/src/ContactBackend.cpp
+++ b/src/contactbackend.cpp
@@ -19,10 +19,10 @@
  ***********************************************************************************/
 
 //Parent
-#include "ContactBackend.h"
+#include "contactbackend.h"
 
 //SFLPhone library
-#include "Contact.h"
+#include "contact.h"
 
 //Qt
 #include <QtCore/QHash>
diff --git a/src/ContactBackend.h b/src/contactbackend.h
similarity index 99%
rename from src/ContactBackend.h
rename to src/contactbackend.h
index b833971b..e8d390ed 100644
--- a/src/ContactBackend.h
+++ b/src/contactbackend.h
@@ -26,7 +26,7 @@
 #include <QVariant>
 
 #include "typedefs.h"
-#include "Contact.h"
+#include "contact.h"
 
 //SFLPhone
 class Contact;
diff --git a/src/CredentialModel.cpp b/src/credentialmodel.cpp
similarity index 99%
rename from src/CredentialModel.cpp
rename to src/credentialmodel.cpp
index ba37f016..69a75fab 100644
--- a/src/CredentialModel.cpp
+++ b/src/credentialmodel.cpp
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License      *
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
  ***************************************************************************/
-#include "CredentialModel.h"
+#include "credentialmodel.h"
 
 #include <QtCore/QDebug>
 
diff --git a/src/CredentialModel.h b/src/credentialmodel.h
similarity index 100%
rename from src/CredentialModel.h
rename to src/credentialmodel.h
diff --git a/src/HistoryModel.cpp b/src/historymodel.cpp
similarity index 99%
rename from src/HistoryModel.cpp
rename to src/historymodel.cpp
index a2408f3c..cee693dc 100644
--- a/src/HistoryModel.cpp
+++ b/src/historymodel.cpp
@@ -15,10 +15,10 @@
  *   You should have received a copy of the GNU General Public License      *
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
  ***************************************************************************/
-#include "HistoryModel.h"
+#include "historymodel.h"
 #include "callmanager_interface_singleton.h"
 #include "configurationmanager_interface_singleton.h"
-#include "Call.h"
+#include "call.h"
 
 
 /*****************************************************************************
diff --git a/src/HistoryModel.h b/src/historymodel.h
similarity index 100%
rename from src/HistoryModel.h
rename to src/historymodel.h
diff --git a/src/InstantMessagingModel.cpp b/src/instantmessagingmodel.cpp
similarity index 98%
rename from src/InstantMessagingModel.cpp
rename to src/instantmessagingmodel.cpp
index f4a031a0..3006b513 100644
--- a/src/InstantMessagingModel.cpp
+++ b/src/instantmessagingmodel.cpp
@@ -15,11 +15,11 @@
  *   You should have received a copy of the GNU General Public License      *
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
  ***************************************************************************/
-#include "InstantMessagingModel.h"
+#include "instantmessagingmodel.h"
 
-#include "CallModel.h"
+#include "callmodel.h"
 #include "callmanager_interface_singleton.h"
-#include "Call.h"
+#include "call.h"
 
 InstantMessagingModelManager* InstantMessagingModelManager::m_spInstance  = nullptr;
 CallModelBase*                InstantMessagingModelManager::m_spCallModel = nullptr;
diff --git a/src/InstantMessagingModel.h b/src/instantmessagingmodel.h
similarity index 100%
rename from src/InstantMessagingModel.h
rename to src/instantmessagingmodel.h
diff --git a/src/VideoCodecModel.cpp b/src/videocodecmodel.cpp
similarity index 98%
rename from src/VideoCodecModel.cpp
rename to src/videocodecmodel.cpp
index 60487a60..d4ded3bd 100644
--- a/src/VideoCodecModel.cpp
+++ b/src/videocodecmodel.cpp
@@ -15,9 +15,9 @@
  *   You should have received a copy of the GNU General Public License      *
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
  ***************************************************************************/
-#include "VideoCodecModel.h"
-#include "Call.h"
-#include "Account.h"
+#include "videocodecmodel.h"
+#include "call.h"
+#include "account.h"
 #include "video_interface_singleton.h"
 
 ///Get data from the model
diff --git a/src/VideoCodecModel.h b/src/videocodecmodel.h
similarity index 100%
rename from src/VideoCodecModel.h
rename to src/videocodecmodel.h
diff --git a/src/VideoDevice.cpp b/src/videodevice.cpp
similarity index 99%
rename from src/VideoDevice.cpp
rename to src/videodevice.cpp
index 1e6f8b46..bdee16de 100644
--- a/src/VideoDevice.cpp
+++ b/src/videodevice.cpp
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License      *
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
  ***************************************************************************/
-#include "VideoDevice.h"
+#include "videodevice.h"
 #include "video_interface_singleton.h"
 
 QHash<QString,VideoDevice*> VideoDevice::m_slDevices;
diff --git a/src/VideoDevice.h b/src/videodevice.h
similarity index 100%
rename from src/VideoDevice.h
rename to src/videodevice.h
diff --git a/src/VideoModel.cpp b/src/videomodel.cpp
similarity index 97%
rename from src/VideoModel.cpp
rename to src/videomodel.cpp
index d78b42f6..53b6b69c 100644
--- a/src/VideoModel.cpp
+++ b/src/videomodel.cpp
@@ -15,14 +15,14 @@
  *   You should have received a copy of the GNU General Public License      *
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
  ***************************************************************************/
-#include "VideoModel.h"
+#include "videomodel.h"
 
 //SFLPhone
 #include "video_interface_singleton.h"
-#include "VideoDevice.h"
-#include "Call.h"
-#include "CallModel.h"
-#include "VideoRenderer.h"
+#include "videodevice.h"
+#include "call.h"
+#include "callmodel.h"
+#include "videorenderer.h"
 
 //Static member
 VideoModel* VideoModel::m_spInstance = nullptr;
diff --git a/src/VideoModel.h b/src/videomodel.h
similarity index 99%
rename from src/VideoModel.h
rename to src/videomodel.h
index fee62da4..2f6795a0 100644
--- a/src/VideoModel.h
+++ b/src/videomodel.h
@@ -25,7 +25,7 @@
 #include <QtCore/QHash>
 
 //SFLPhone
-#include "VideoDevice.h"
+#include "videodevice.h"
 class VideoRenderer;
 class Call;
 struct SHMHeader;
diff --git a/src/VideoRenderer.cpp b/src/videorenderer.cpp
similarity index 99%
rename from src/VideoRenderer.cpp
rename to src/videorenderer.cpp
index f267a57b..78947b80 100644
--- a/src/VideoRenderer.cpp
+++ b/src/videorenderer.cpp
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License      *
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
  ***************************************************************************/
-#include "VideoRenderer.h"
+#include "videorenderer.h"
 
 #include <QtCore/QDebug>
 
diff --git a/src/VideoRenderer.h b/src/videorenderer.h
similarity index 99%
rename from src/VideoRenderer.h
rename to src/videorenderer.h
index 024b49f9..9c22b9b7 100644
--- a/src/VideoRenderer.h
+++ b/src/videorenderer.h
@@ -26,7 +26,7 @@
 class QTimer;
 
 //SFLPhone
-#include "VideoDevice.h"
+#include "videodevice.h"
 struct SHMHeader;
 
 ///Manage shared memory and convert it to QByteArray
-- 
GitLab