Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in / Register
Toggle navigation
J
jami-daemon
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
120
Issues
120
List
Boards
Labels
Milestones
Security & Compliance
Security & Compliance
Dependency List
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
savoirfairelinux
jami-daemon
Commits
2c8e0c74
Commit
2c8e0c74
authored
Jul 23, 2009
by
Emmanuel Milou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[#1910] Remove compilation warnings in src/dbus and src/history
parent
2cc2b01e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
7 deletions
+14
-7
sflphone-common/src/history/historyitem.cpp
sflphone-common/src/history/historyitem.cpp
+6
-1
sflphone-common/src/history/historymanager.cpp
sflphone-common/src/history/historymanager.cpp
+3
-1
sflphone-common/src/history/historymanager.h
sflphone-common/src/history/historymanager.h
+5
-5
No files found.
sflphone-common/src/history/historyitem.cpp
View file @
2c8e0c74
...
...
@@ -27,7 +27,12 @@
#define EMPTY_STRING "empty"
HistoryItem
::
HistoryItem
(
std
::
string
timestamp_start
,
CallType
call_type
,
std
::
string
timestamp_stop
,
std
::
string
name
,
std
::
string
number
,
std
::
string
account_id
)
:
_timestamp_start
(
timestamp_start
),
_call_type
(
call_type
),
_timestamp_stop
(
timestamp_stop
),
_name
(
name
),
_number
(
number
),
_account_id
(
account_id
)
:
_timestamp_start
(
timestamp_start
),
_timestamp_stop
(
timestamp_stop
),
_call_type
(
call_type
),
_name
(
name
),
_number
(
number
),
_account_id
(
account_id
)
{
}
...
...
sflphone-common/src/history/historymanager.cpp
View file @
2c8e0c74
...
...
@@ -23,7 +23,9 @@
#include <cc++/file.h>
#include <time.h>
HistoryManager
::
HistoryManager
()
:
_history_loaded
(
false
),
_history_path
(
""
)
HistoryManager
::
HistoryManager
()
:
_history_loaded
(
false
),
_history_path
(
""
)
{
}
...
...
sflphone-common/src/history/historymanager.h
View file @
2c8e0c74
...
...
@@ -121,17 +121,17 @@ class HistoryManager {
*/
HistoryItemMap
_history_items
;
/*
* History has been loaded
*/
bool
_history_loaded
;
/*
* The path to the history file
*/
std
::
string
_history_path
;
/*
* History has been loaded
*/
bool
_history_loaded
;
friend
class
HistoryTest
;
};
...
...
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