Skip to content
Snippets Groups Projects
Commit 62063f57 authored by jpbl's avatar jpbl
Browse files

See Changelog

parent 8c3de3b7
No related branches found
No related tags found
No related merge requests found
SFLphone (0.4.1-pre2) / now SFLphone (0.4.1-pre2) / now
* rearranged utilspp use * rearranged utilspp use
* Bug fix when trying to use more than 6 lines.
SFLphone (0.4.1-pre1) / 2005-08-11 SFLphone (0.4.1-pre1) / 2005-08-11
* Use libeXosip2 * Use libeXosip2
......
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. - Manager has now a LifetimeLibrary policy.
- Utilspp has been rearranged. - Utilspp has been rearranged.
......
...@@ -1007,9 +1007,14 @@ QtGUIMainWindow::qt_outgoingCall (void) ...@@ -1007,9 +1007,14 @@ QtGUIMainWindow::qt_outgoingCall (void)
id = outgoingCall(to); id = outgoingCall(to);
if (id > 0) { 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); _debug("Call %d -> line %d\n", id, line);
// To store information about stop scrolling text // To store information about stop scrolling text
_lcd->resetForScrolling (false); _lcd->resetForScrolling (false);
phLines[line]->setStopScrolling(false); phLines[line]->setStopScrolling(false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment