Skip to content
Snippets Groups Projects
Commit 482beac5 authored by Emmanuel Lepage Vallee's avatar Emmanuel Lepage Vallee
Browse files

[ #13801 ] Remove caps from file

parent ab4623f5
Branches
Tags
No related merge requests found
...@@ -26,20 +26,20 @@ INCLUDE_DIRECTORIES ( ${QT_INCLUDES} ${CMAKE_CURRENT_BINARY_DIR}) ...@@ -26,20 +26,20 @@ INCLUDE_DIRECTORIES ( ${QT_INCLUDES} ${CMAKE_CURRENT_BINARY_DIR})
#File to compile #File to compile
set( qtsflphone_LIB_SRCS set( qtsflphone_LIB_SRCS
Call.cpp call.cpp
Account.cpp account.cpp
AccountList.cpp accountlist.cpp
CallModel.cpp callmodel.cpp
HistoryModel.cpp historymodel.cpp
Contact.cpp contact.cpp
ContactBackend.cpp contactbackend.cpp
VideoCodecModel.cpp videocodecmodel.cpp
VideoModel.cpp videomodel.cpp
VideoRenderer.cpp videorenderer.cpp
VideoDevice.cpp videodevice.cpp
CredentialModel.cpp credentialmodel.cpp
AudioCodecModel.cpp audiocodecmodel.cpp
InstantMessagingModel.cpp instantmessagingmodel.cpp
configurationmanager_interface_singleton.cpp configurationmanager_interface_singleton.cpp
callmanager_interface_singleton.cpp callmanager_interface_singleton.cpp
instance_interface_singleton.cpp instance_interface_singleton.cpp
...@@ -120,25 +120,25 @@ set_target_properties( qtsflphone ...@@ -120,25 +120,25 @@ set_target_properties( qtsflphone
) )
set( qtsflphone_LIB_HDRS set( qtsflphone_LIB_HDRS
Account.h account.h
AccountList.h accountlist.h
Call.h call.h
CallModel.h callmodel.h
HistoryModel.h historymodel.h
Contact.h contact.h
ContactBackend.h contactbackend.h
VideoCodecModel.h videocodecmodel.h
VideoModel.h videomodel.h
VideoDevice.h videodevice.h
VideoRenderer.h videorenderer.h
CredentialModel.h credentialmodel.h
AudioCodecModel.h audiocodecmodel.h
configurationmanager_interface_singleton.h configurationmanager_interface_singleton.h
callmanager_interface_singleton.h callmanager_interface_singleton.h
instance_interface_singleton.h instance_interface_singleton.h
video_interface_singleton.h video_interface_singleton.h
sflphone_const.h sflphone_const.h
InstantMessagingModel.h instantmessagingmodel.h
) )
install( FILES ${qtsflphone_LIB_HDRS} install( FILES ${qtsflphone_LIB_HDRS}
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
***************************************************************************/ ***************************************************************************/
//Parent //Parent
#include "Account.h" #include "account.h"
//Qt //Qt
#include <QtCore/QDebug> #include <QtCore/QDebug>
...@@ -31,10 +31,10 @@ ...@@ -31,10 +31,10 @@
#include "configurationmanager_interface_singleton.h" #include "configurationmanager_interface_singleton.h"
#include "callmanager_interface_singleton.h" #include "callmanager_interface_singleton.h"
#include "video_interface_singleton.h" #include "video_interface_singleton.h"
#include "AccountList.h" #include "accountlist.h"
#include "CredentialModel.h" #include "credentialmodel.h"
#include "AudioCodecModel.h" #include "audiocodecmodel.h"
#include "VideoCodecModel.h" #include "videocodecmodel.h"
const account_function Account::stateMachineActionsOnState[6][7] = { const account_function Account::stateMachineActionsOnState[6][7] = {
/* NOTHING EDIT RELOAD SAVE REMOVE MODIFY CANCEL */ /* NOTHING EDIT RELOAD SAVE REMOVE MODIFY CANCEL */
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
class QString; class QString;
//SFLPhone //SFLPhone
#include "VideoCodecModel.h" #include "videocodecmodel.h"
#include "sflphone_const.h" #include "sflphone_const.h"
#include "typedefs.h" #include "typedefs.h"
#include "dbus/metatypes.h" #include "dbus/metatypes.h"
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
***************************************************************************/ ***************************************************************************/
//Parent //Parent
#include "AccountList.h" #include "accountlist.h"
//SFLPhone //SFLPhone
#include "sflphone_const.h" #include "sflphone_const.h"
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include <QtCore/QVector> #include <QtCore/QVector>
#include <QtCore/QAbstractListModel> #include <QtCore/QAbstractListModel>
#include "Account.h" #include "account.h"
#include "typedefs.h" #include "typedefs.h"
#include "dbus/metatypes.h" #include "dbus/metatypes.h"
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License * * You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. * * along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/ ***************************************************************************/
#include "AudioCodecModel.h" #include "audiocodecmodel.h"
//Qt //Qt
#include <QtCore/QDebug> #include <QtCore/QDebug>
......
File moved
...@@ -18,17 +18,17 @@ ...@@ -18,17 +18,17 @@
***************************************************************************/ ***************************************************************************/
//Parent //Parent
#include "Call.h" #include "call.h"
//SFLPhone library //SFLPhone library
#include "callmanager_interface_singleton.h" #include "callmanager_interface_singleton.h"
#include "configurationmanager_interface_singleton.h" #include "configurationmanager_interface_singleton.h"
#include "ContactBackend.h" #include "contactbackend.h"
#include "Contact.h" #include "contact.h"
#include "Account.h" #include "account.h"
#include "AccountList.h" #include "accountlist.h"
#include "VideoModel.h" #include "videomodel.h"
#include "InstantMessagingModel.h" #include "instantmessagingmodel.h"
const call_state Call::actionPerformedStateMap [13][5] = const call_state Call::actionPerformedStateMap [13][5] =
......
File moved
...@@ -18,9 +18,9 @@ ...@@ -18,9 +18,9 @@
***************************************************************************/ ***************************************************************************/
//Parent //Parent
#include <CallModel.h> #include <callmodel.h>
#include "video_interface_singleton.h" #include "video_interface_singleton.h"
#include "HistoryModel.h" #include "historymodel.h"
bool CallModelBase::dbusInit = false; bool CallModelBase::dbusInit = false;
CallMap CallModelBase::m_sActiveCalls; CallMap CallModelBase::m_sActiveCalls;
......
...@@ -217,6 +217,6 @@ class LIB_EXPORT CallModel : public CallModelBase { ...@@ -217,6 +217,6 @@ class LIB_EXPORT CallModel : public CallModelBase {
Call* addCallCommon(Call* call); Call* addCallCommon(Call* call);
bool updateCommon (Call* call); bool updateCommon (Call* call);
}; };
#include "CallModel.hpp" #include "callmodel.hpp"
#endif #endif
...@@ -23,15 +23,15 @@ ...@@ -23,15 +23,15 @@
#include <QtGui/QDragEnterEvent> #include <QtGui/QDragEnterEvent>
//SFLPhone library //SFLPhone library
#include "Call.h" #include "call.h"
#include "AccountList.h" #include "accountlist.h"
#include "dbus/metatypes.h" #include "dbus/metatypes.h"
#include "callmanager_interface_singleton.h" #include "callmanager_interface_singleton.h"
#include "configurationmanager_interface_singleton.h" #include "configurationmanager_interface_singleton.h"
#include "instance_interface_singleton.h" #include "instance_interface_singleton.h"
#include "sflphone_const.h" #include "sflphone_const.h"
#include "typedefs.h" #include "typedefs.h"
#include "ContactBackend.h" #include "contactbackend.h"
//System //System
#include "unistd.h" #include "unistd.h"
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
***************************************************************************/ ***************************************************************************/
//Parent //Parent
#include "Contact.h" #include "contact.h"
//Qt //Qt
#include <QtGui/QPixmap> #include <QtGui/QPixmap>
......
File moved
...@@ -19,10 +19,10 @@ ...@@ -19,10 +19,10 @@
***********************************************************************************/ ***********************************************************************************/
//Parent //Parent
#include "ContactBackend.h" #include "contactbackend.h"
//SFLPhone library //SFLPhone library
#include "Contact.h" #include "contact.h"
//Qt //Qt
#include <QtCore/QHash> #include <QtCore/QHash>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include <QVariant> #include <QVariant>
#include "typedefs.h" #include "typedefs.h"
#include "Contact.h" #include "contact.h"
//SFLPhone //SFLPhone
class Contact; class Contact;
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License * * You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. * * along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/ ***************************************************************************/
#include "CredentialModel.h" #include "credentialmodel.h"
#include <QtCore/QDebug> #include <QtCore/QDebug>
......
File moved
...@@ -15,10 +15,10 @@ ...@@ -15,10 +15,10 @@
* You should have received a copy of the GNU General Public License * * You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. * * along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/ ***************************************************************************/
#include "HistoryModel.h" #include "historymodel.h"
#include "callmanager_interface_singleton.h" #include "callmanager_interface_singleton.h"
#include "configurationmanager_interface_singleton.h" #include "configurationmanager_interface_singleton.h"
#include "Call.h" #include "call.h"
/***************************************************************************** /*****************************************************************************
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment