mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
See Changelog
This commit is contained in:
1
CHANGES
1
CHANGES
@ -1,6 +1,7 @@
|
||||
|
||||
SFLphone (0.4.1-pre2) / now
|
||||
* rearranged utilspp use
|
||||
* Bug fix when trying to use more than 6 lines.
|
||||
|
||||
SFLphone (0.4.1-pre1) / 2005-08-11
|
||||
* Use libeXosip2
|
||||
|
@ -1,4 +1,7 @@
|
||||
Jean-Philippe Barette-LaPierre (28 April 2005) version 0.4.1-pre1
|
||||
Jean-Philippe Barette-LaPierre (29 April 2005) version 0.4.1-pre1
|
||||
- Bug fix when trying to use more than 6 lines.
|
||||
|
||||
Jean-Philippe Barette-LaPierre (20 August 2005) version 0.4.1-pre1
|
||||
- Manager has now a LifetimeLibrary policy.
|
||||
- Utilspp has been rearranged.
|
||||
|
||||
|
@ -1007,9 +1007,14 @@ QtGUIMainWindow::qt_outgoingCall (void)
|
||||
|
||||
id = outgoingCall(to);
|
||||
if (id > 0) {
|
||||
line = associateCall2Line(id);
|
||||
line = associateCall2Line(id);
|
||||
if(line == -1) {
|
||||
_debug("Call %d -> there's no available lines\n", id);
|
||||
return -1;
|
||||
}
|
||||
_debug("Call %d -> line %d\n", id, line);
|
||||
|
||||
|
||||
// To store information about stop scrolling text
|
||||
_lcd->resetForScrolling (false);
|
||||
phLines[line]->setStopScrolling(false);
|
||||
|
Reference in New Issue
Block a user