Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Archive
ekiga
Commits
f81a43f2
Commit
f81a43f2
authored
Mar 24, 2012
by
Eugen Dedu
Browse files
Fix compile error with gcc 4.7
parent
51a6969a
Changes
5
Hide whitespace changes
Inline
Side-by-side
lib/engine/account/bank-impl.h
View file @
f81a43f2
...
...
@@ -203,7 +203,7 @@ template<typename AccountType>
void
Ekiga
::
BankImpl
<
AccountType
>::
add_account
(
boost
::
shared_ptr
<
AccountType
>
account
)
{
add_object
(
account
);
this
->
add_object
(
account
);
account
->
questions
.
connect
(
boost
::
ref
(
questions
));
}
...
...
@@ -213,7 +213,7 @@ template<typename AccountType>
void
Ekiga
::
BankImpl
<
AccountType
>::
remove_account
(
boost
::
shared_ptr
<
AccountType
>
account
)
{
remove_object
(
account
);
this
->
remove_object
(
account
);
}
#endif
lib/engine/addressbook/book-impl.h
View file @
f81a43f2
...
...
@@ -204,7 +204,7 @@ void
Ekiga
::
BookImpl
<
ContactType
>::
add_contact
(
boost
::
shared_ptr
<
ContactType
>
contact
)
{
contact
->
questions
.
connect
(
boost
::
ref
(
questions
));
add_object
(
contact
);
this
->
add_object
(
contact
);
}
...
...
@@ -212,7 +212,7 @@ template<typename ContactType>
void
Ekiga
::
BookImpl
<
ContactType
>::
remove_contact
(
boost
::
shared_ptr
<
ContactType
>
contact
)
{
remove_object
(
contact
);
this
->
remove_object
(
contact
);
}
#endif
lib/engine/addressbook/source-impl.h
View file @
f81a43f2
...
...
@@ -206,7 +206,7 @@ template<typename BookType>
void
Ekiga
::
SourceImpl
<
BookType
>::
add_book
(
boost
::
shared_ptr
<
BookType
>
book
)
{
add_object
(
book
);
this
->
add_object
(
book
);
add_connection
(
book
,
book
->
contact_added
.
connect
(
boost
::
bind
(
boost
::
ref
(
contact_added
),
book
,
_1
)));
...
...
lib/engine/presence/cluster-impl.h
View file @
f81a43f2
...
...
@@ -147,7 +147,7 @@ Ekiga::ClusterImpl<HeapType>::add_heap (boost::shared_ptr<HeapType> heap)
add_connection
(
heap
,
heap
->
questions
.
connect
(
boost
::
ref
(
questions
)));
add_object
(
heap
);
this
->
add_object
(
heap
);
}
template
<
typename
HeapType
>
...
...
lib/engine/presence/heap-impl.h
View file @
f81a43f2
...
...
@@ -160,14 +160,14 @@ Ekiga::HeapImpl<PresentityType>::add_presentity (boost::shared_ptr<PresentityTyp
{
presentity
->
questions
.
connect
(
boost
::
ref
(
questions
));
add_object
(
presentity
);
this
->
add_object
(
presentity
);
}
template
<
typename
PresentityType
>
void
Ekiga
::
HeapImpl
<
PresentityType
>::
remove_presentity
(
boost
::
shared_ptr
<
PresentityType
>
presentity
)
{
remove_object
(
presentity
);
this
->
remove_object
(
presentity
);
}
#endif
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