From 62ce42befe3ede77d50d40601623a9be9e4f7a7d Mon Sep 17 00:00:00 2001
From: Alexandre Bourget <alexandre.bourget@savoirfairelinux.com>
Date: Thu, 30 Aug 2007 16:41:00 -0400
Subject: [PATCH] Rename voIPLink.h|cpp to voiplink.h|cpp

---
 src/Makefile.am                    | 4 ++--
 src/account.cpp                    | 2 +-
 src/account.h                      | 6 +++---
 src/eventthread.cpp                | 2 +-
 src/iaxvoiplink.h                  | 2 +-
 src/managerimpl.cpp                | 2 +-
 src/sipvoiplink.h                  | 2 +-
 src/{voIPLink.cpp => voiplink.cpp} | 2 +-
 src/{voIPLink.h => voiplink.h}     | 0
 9 files changed, 11 insertions(+), 11 deletions(-)
 rename src/{voIPLink.cpp => voiplink.cpp} (98%)
 rename src/{voIPLink.h => voiplink.h} (100%)

diff --git a/src/Makefile.am b/src/Makefile.am
index 3cb51edd4d..90a7b569f1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -30,7 +30,7 @@ endif
 
 SUBDIRS = audio config gui $(ZEROCONFDIR)
 
-sflphoned_SOURCES = eventthread.cpp 	main.cpp 	voIPLink.cpp \
+sflphoned_SOURCES = eventthread.cpp 	main.cpp 	voiplink.cpp \
 		managerimpl.cpp	observer.cpp \
 		account.cpp sipaccount.cpp accountcreator.cpp \
                 sipvoiplink.cpp call.cpp sipcall.cpp \
@@ -55,7 +55,7 @@ libsflphone_la_SOURCES =
 
 noinst_LTLIBRARIES = libsflphone.la
 noinst_HEADERS = managerimpl.h manager.h global.h observer.h eventthread.h user_cfg.h \
-                 voIPLink.h \
+                 voiplink.h \
 		 account.h sipaccount.h accountcreator.h \
                  sipvoiplink.h  call.h  sipcall.h \
 		 $(IAXHEADERS)
diff --git a/src/account.cpp b/src/account.cpp
index 17636b065d..ea1fc8ddf8 100644
--- a/src/account.cpp
+++ b/src/account.cpp
@@ -17,7 +17,7 @@
  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 #include "account.h"
-#include "voIPLink.h"
+#include "voiplink.h"
 #include "manager.h"
 
 Account::Account(const AccountID& accountID) : _accountID(accountID)
diff --git a/src/account.h b/src/account.h
index 4eeb9f25a8..71db06b0d4 100644
--- a/src/account.h
+++ b/src/account.h
@@ -113,7 +113,7 @@ class Account{
 
 private:
   /**
-   * Create a unique voIPLink() depending on the protocol
+   * Create a unique VoIPLink() depending on the protocol
    * Multiple call to this function do nothing (if the voiplink pointer is 0)
    * @return false if an error occurs
    */
@@ -143,13 +143,13 @@ protected:
   bool _shouldRegisterOnStart;
 
   /**
-   * Tells if the link is enabled or not
+   * Tells if the link is enabled or not.
    * Modified by init/terminate
    */
   bool _enabled;
 
   /**
-   * Tells if the link is registered or not
+   * Tells if the link is registered or not.
    * Modified by unregister/register
    */
   bool _registered;
diff --git a/src/eventthread.cpp b/src/eventthread.cpp
index 401e2e8948..8eaa3e9b9e 100644
--- a/src/eventthread.cpp
+++ b/src/eventthread.cpp
@@ -19,7 +19,7 @@
  */
 
 #include "eventthread.h"
-#include "voIPLink.h"
+#include "voiplink.h"
 
 EventThread::EventThread (VoIPLink* link) : Thread () 
 {
diff --git a/src/iaxvoiplink.h b/src/iaxvoiplink.h
index 34351203dd..128181538b 100644
--- a/src/iaxvoiplink.h
+++ b/src/iaxvoiplink.h
@@ -19,7 +19,7 @@
 #ifndef IAXVOIPLINK_H
 #define IAXVOIPLINK_H
 
-#include "voIPLink.h"
+#include "voiplink.h"
 #include <iax/iax-client.h>
 #include "global.h"
 
diff --git a/src/managerimpl.cpp b/src/managerimpl.cpp
index 14d7cc134b..ce0ec46b05 100644
--- a/src/managerimpl.cpp
+++ b/src/managerimpl.cpp
@@ -38,7 +38,7 @@
 #include "audio/tonelist.h"
 
 #include "accountcreator.h" // create new account
-#include "voIPLink.h"
+#include "voiplink.h"
 
 #include "user_cfg.h"
 #include "gui/guiframework.h"
diff --git a/src/sipvoiplink.h b/src/sipvoiplink.h
index 3d8a3a7aab..85b5ebafdb 100644
--- a/src/sipvoiplink.h
+++ b/src/sipvoiplink.h
@@ -20,7 +20,7 @@
 #ifndef SIPVOIPLINK_H
 #define SIPVOIPLINK_H
 
-#include "voIPLink.h"
+#include "voiplink.h"
 #include <string>
 #include <eXosip2/eXosip.h>
 #include "audio/audiortp.h"
diff --git a/src/voIPLink.cpp b/src/voiplink.cpp
similarity index 98%
rename from src/voIPLink.cpp
rename to src/voiplink.cpp
index 02dd2410fa..61a3a4cc7c 100644
--- a/src/voIPLink.cpp
+++ b/src/voiplink.cpp
@@ -21,7 +21,7 @@
 #include <string>
 
 #include "user_cfg.h"
-#include "voIPLink.h"
+#include "voiplink.h"
 
 VoIPLink::VoIPLink(const AccountID& accountID) : _accountID(accountID), _localIPAddress("127.0.0.1"), _localPort(0)
 {
diff --git a/src/voIPLink.h b/src/voiplink.h
similarity index 100%
rename from src/voIPLink.h
rename to src/voiplink.h
-- 
GitLab