Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
e19dbdb1
Commit
e19dbdb1
authored
Feb 05, 2009
by
Emmanuel Milou
Browse files
Fix path for GTK+ icons; clean up
parent
04e25fe2
Changes
2
Hide whitespace changes
Inline
Side-by-side
sflphone-gtk/src/Makefile.am
View file @
e19dbdb1
...
...
@@ -43,8 +43,8 @@ EXTRA_DIST = marshaller.list
sflphone_gtk_LDADD
=
$(DEPS_LIBS)
$(NOTIFY_LIBS)
$(SEXY_LIBS)
AM_CPPFLAGS
=
$(DEPS_CFLAGS)
\
-DICONS_DIR
=
\"
"
/usr
/share/sflphone"
\"
\
-DCODECS_DIR
=
\"
"
/usr
/lib/sflphone/codecs"
\"
-DICONS_DIR
=
\"
"
$(prefix)
/share/sflphone"
\"
\
-DCODECS_DIR
=
\"
"
$(prefix)
/lib/sflphone/codecs"
\"
# add symbolic link
install-exec-local
:
...
...
src/managerimpl.cpp
View file @
e19dbdb1
...
...
@@ -1990,32 +1990,6 @@ void ManagerImpl::setAccountDetails( const std::string& accountID, const std::ma
setConfig
(
accountID
,
HOSTNAME
,
(
*
details
.
find
(
HOSTNAME
)).
second
);
setConfig
(
accountID
,
CONFIG_ACCOUNT_MAILBOX
,(
*
details
.
find
(
CONFIG_ACCOUNT_MAILBOX
)).
second
);
// SIP SPECIFIC
/*
if (accountType == "SIP") {
link = Manager::instance().getAccountLink( accountID );
if( link==0 )
{
_debug("Can not retrieve SIP link...\n");
return;
}
setConfig(accountID, SIP_STUN_SERVER,(*details.find(SIP_STUN_SERVER)).second);
setConfig(accountID, SIP_USE_STUN, (*details.find(SIP_USE_STUN)).second == "TRUE" ? "1" : "0");
if((*details.find(SIP_USE_STUN)).second == "TRUE")
{
link->setStunServer((*details.find(SIP_STUN_SERVER)).second.data());
}
else
{
link->setStunServer("");
}
restartPJSIP();
}*/
saveConfig
();
acc
=
getAccount
(
accountID
);
...
...
@@ -2030,8 +2004,6 @@ void ManagerImpl::setAccountDetails( const std::string& accountID, const std::ma
// Update account details to the client side
if
(
_dbus
)
_dbus
->
getConfigurationManager
()
->
accountsChanged
();
//delete link; link=0;
}
void
...
...
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