Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
0fd79e86
Commit
0fd79e86
authored
Apr 27, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(app): sort correctly included headers
parent
b0378709
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
37 additions
and
40 deletions
+37
-40
Utils.cpp
linphone-desktop/src/Utils.cpp
+0
-2
App.cpp
linphone-desktop/src/app/App.cpp
+8
-8
App.hpp
linphone-desktop/src/app/App.hpp
+3
-3
Paths.cpp
linphone-desktop/src/app/paths/Paths.cpp
+1
-1
Camera.cpp
linphone-desktop/src/components/camera/Camera.cpp
+4
-4
CameraPreview.cpp
linphone-desktop/src/components/camera/CameraPreview.cpp
+4
-4
ChatProxyModel.hpp
linphone-desktop/src/components/chat/ChatProxyModel.hpp
+2
-2
ContactsListModel.hpp
...one-desktop/src/components/contacts/ContactsListModel.hpp
+1
-2
ContactsListProxyModel.cpp
...esktop/src/components/contacts/ContactsListProxyModel.cpp
+2
-2
CoreManager.cpp
linphone-desktop/src/components/core/CoreManager.cpp
+4
-4
CoreManager.hpp
linphone-desktop/src/components/core/CoreManager.hpp
+4
-4
OwnPresenceModel.hpp
...hone-desktop/src/components/presence/OwnPresenceModel.hpp
+2
-2
SipAddressesModel.hpp
...esktop/src/components/sip-addresses/SipAddressesModel.hpp
+2
-2
No files found.
linphone-desktop/src/Utils.cpp
View file @
0fd79e86
...
...
@@ -20,8 +20,6 @@
* Author: Ronan Abhamon
*/
#include <QQuickWindow>
#include "Utils.hpp"
// =============================================================================
...
...
linphone-desktop/src/app/App.cpp
View file @
0fd79e86
...
...
@@ -20,6 +20,14 @@
* Author: Ronan Abhamon
*/
#include <QDir>
#include <QFileSelector>
#include <QMenu>
#include <QQmlFileSelector>
#include <QSystemTrayIcon>
#include <QtDebug>
#include <QTimer>
#include "../components/Components.hpp"
#include "../Utils.hpp"
...
...
@@ -30,14 +38,6 @@
#include "App.hpp"
#include <QDir>
#include <QFileSelector>
#include <QMenu>
#include <QQmlFileSelector>
#include <QSystemTrayIcon>
#include <QtDebug>
#include <QTimer>
#define DEFAULT_LOCALE "en"
#define LANGUAGES_PATH ":/languages/"
...
...
linphone-desktop/src/app/App.hpp
View file @
0fd79e86
...
...
@@ -23,13 +23,13 @@
#ifndef APP_H_
#define APP_H_
#include "../components/notifier/Notifier.hpp"
#include "../externals/single-application/SingleApplication.hpp"
#include <QCommandLineParser>
#include <QQmlApplicationEngine>
#include <QQuickWindow>
#include "../components/notifier/Notifier.hpp"
#include "../externals/single-application/SingleApplication.hpp"
// =============================================================================
class
DefaultTranslator
;
...
...
linphone-desktop/src/app/paths/Paths.cpp
View file @
0fd79e86
...
...
@@ -27,9 +27,9 @@
#include <QtDebug>
#include "../../Utils.hpp"
#include "config.h"
#include "Paths.hpp"
#include "config.h"
#define PATH_ASSISTANT_CONFIG "/assistant/"
#define PATH_AVATARS "/avatars/"
...
...
linphone-desktop/src/components/camera/Camera.cpp
View file @
0fd79e86
...
...
@@ -20,15 +20,15 @@
* Author: Ronan Abhamon
*/
#include <QQuickWindow>
#include <QThread>
#include <QTimer>
#include "../core/CoreManager.hpp"
#include "MSFunctions.hpp"
#include "Camera.hpp"
#include <QQuickWindow>
#include <QThread>
#include <QTimer>
#define MAX_FPS 30
using
namespace
std
;
...
...
linphone-desktop/src/components/camera/CameraPreview.cpp
View file @
0fd79e86
...
...
@@ -20,15 +20,15 @@
* Author: Ronan Abhamon
*/
#include <QQuickWindow>
#include <QThread>
#include <QTimer>
#include "../core/CoreManager.hpp"
#include "MSFunctions.hpp"
#include "CameraPreview.hpp"
#include <QQuickWindow>
#include <QThread>
#include <QTimer>
#define MAX_FPS 30
using
namespace
std
;
...
...
linphone-desktop/src/components/chat/ChatProxyModel.hpp
View file @
0fd79e86
...
...
@@ -23,10 +23,10 @@
#ifndef CHAT_PROXY_MODEL_H_
#define CHAT_PROXY_MODEL_H_
#include "ChatModel.hpp"
#include <QSortFilterProxyModel>
#include "ChatModel.hpp"
// =============================================================================
class
ChatProxyModel
:
public
QSortFilterProxyModel
{
...
...
linphone-desktop/src/components/contacts/ContactsListModel.hpp
View file @
0fd79e86
...
...
@@ -24,11 +24,10 @@
#define CONTACTS_LIST_MODEL_H_
#include <linphone++/linphone.hh>
#include <QAbstractListModel>
#include "../contact/ContactModel.hpp"
#include <QAbstractListModel>
// =============================================================================
class
ContactsListModel
:
public
QAbstractListModel
{
...
...
linphone-desktop/src/components/contacts/ContactsListProxyModel.cpp
View file @
0fd79e86
...
...
@@ -20,10 +20,10 @@
* Author: Ronan Abhamon
*/
#include <QDebug>
#include <cmath>
#include <QDebug>
#include "../../Utils.hpp"
#include "../core/CoreManager.hpp"
...
...
linphone-desktop/src/components/core/CoreManager.cpp
View file @
0fd79e86
...
...
@@ -20,15 +20,15 @@
* Author: Ronan Abhamon
*/
#include <QDir>
#include <QtConcurrent>
#include <QTimer>
#include "../../app/paths/Paths.hpp"
#include "../../Utils.hpp"
#include "CoreManager.hpp"
#include <QDir>
#include <QtConcurrent>
#include <QTimer>
#define CBS_CALL_INTERVAL 20
using
namespace
std
;
...
...
linphone-desktop/src/components/core/CoreManager.hpp
View file @
0fd79e86
...
...
@@ -23,6 +23,10 @@
#ifndef CORE_MANAGER_H_
#define CORE_MANAGER_H_
#include <QFuture>
#include <QFutureWatcher>
#include <QMutex>
#include "../calls/CallsListModel.hpp"
#include "../contacts/ContactsListModel.hpp"
#include "../settings/AccountSettingsModel.hpp"
...
...
@@ -31,10 +35,6 @@
#include "CoreHandlers.hpp"
#include <QFuture>
#include <QFutureWatcher>
#include <QMutex>
// =============================================================================
class
QTimer
;
...
...
linphone-desktop/src/components/presence/OwnPresenceModel.hpp
View file @
0fd79e86
...
...
@@ -23,10 +23,10 @@
#ifndef OWN_PRESENCE_MODEL_H_
#define OWN_PRESENCE_MODEL_H_
#include "../presence/Presence.hpp"
#include <QObject>
#include "../presence/Presence.hpp"
// =============================================================================
// Gives the statuses list informations (icons, label, level, status).
// Can set/get the presence status of the linphone user app.
...
...
linphone-desktop/src/components/sip-addresses/SipAddressesModel.hpp
View file @
0fd79e86
...
...
@@ -23,12 +23,12 @@
#ifndef SIP_ADDRESSES_MODEL_H_
#define SIP_ADDRESSES_MODEL_H_
#include <QAbstractListModel>
#include "../chat/ChatModel.hpp"
#include "../contact/ContactModel.hpp"
#include "SipAddressObserver.hpp"
#include <QAbstractListModel>
// =============================================================================
class
CoreHandlers
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment