See Changelog

This commit is contained in:
jpbl
2005-08-29 17:44:53 +00:00
parent 8c3de3b7cb
commit 62063f5728
3 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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.

View File

@ -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);