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
c8f9f838
Commit
c8f9f838
authored
Sep 06, 2006
by
yanmorin
Browse files
QT Transfer stop flashing
parent
0723471d
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
c8f9f838
2006-09-06 Yan Morin
* Fix packaging problem for 0.7.0 release (fedora.spec)
* Use portaudio with PA_ALSA_PLUGHW (enable alsa resampling)
* Use SFLDEBUG instead of DEBUG. DEBUG is use by QT
* Desactivate line flashing when a call is transfered
2006-08-31 Yan Morin
* Improve launcher (only start if needed). If the daemon is started, qt won't stop it.
...
...
src/gui/qt/PhoneLine.cpp
View file @
c8f9f838
...
...
@@ -334,10 +334,10 @@ PhoneLine::transfer()
{
if
(
mCall
)
{
if
(
mBuffer
.
length
()
==
0
)
{
DebugOutput
::
instance
()
<<
tr
(
"PhoneLine %1: We're now in transfer mode.
\n
"
);
DebugOutput
::
instance
()
<<
tr
(
"PhoneLine %1: We're now in transfer mode.
\n
"
)
.
arg
(
mLine
)
;
setAction
(
tr
(
"Transfer to:"
));
clear
();
unselect
();
unselect
(
true
);
mIsTransfering
=
true
;
}
else
{
...
...
@@ -357,6 +357,7 @@ void
PhoneLine
::
finishTransfer
()
{
clearCall
();
unselect
(
true
);
stopTalking
();
if
(
mIsTransfering
)
{
...
...
src/gui/qt/SFLPhoneApp.cpp
View file @
c8f9f838
...
...
@@ -122,6 +122,8 @@ SFLPhoneApp::initConnections(SFLPhoneWindow *w)
*
pos
,
SLOT
(
setOn
(
bool
)));
QObject
::
connect
(
line
,
SIGNAL
(
backgrounded
()),
*
pos
,
SLOT
(
suspend
()));
QObject
::
connect
(
line
,
SIGNAL
(
transfered
()),
*
pos
,
SLOT
(
stopFlashing
()));
QObject
::
connect
(
line
,
SIGNAL
(
hanguped
()),
*
pos
,
SLOT
(
stopFlashing
()));
QObject
::
connect
(
line
,
SIGNAL
(
peerUpdated
(
QString
)),
...
...
Write
Preview
Supports
Markdown
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