Update of /cvsroot/wpdev/wolfpack/win
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28084/win
Modified Files:
console_win.cpp
Log Message:
fixes
Index: console_win.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/win/console_win.cpp,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** console_win.cpp 19 Sep 2004 16:50:44 -0000 1.29
--- console_win.cpp 25 Sep 2004 21:15:47 -0000 1.30
***************
*** 856,860 ****
void cConsole::rollbackChars(unsigned int count) {
! int length = GetWindowTextLength(logWindow);
// Select the rest
--- 856,861 ----
void cConsole::rollbackChars(unsigned int count) {
! int ctrlLength = GetWindowTextLength(logWindow);
! SendMessage( logWindow, EM_SETSEL, ctrlLength, ctrlLength );
// Select the rest
***************
*** 876,880 ****
QString temp = progress;
progress = QString::null;
! rollbackChars(temp.length() + 4);
progress = temp;
}
--- 877,881 ----
QString temp = progress;
progress = QString::null;
! rollbackChars(temp.length());
progress = temp;
}
***************
*** 928,932 ****
QString temp = progress;
progress = QString::null;
! sendProgress( temp );
}
}
--- 929,934 ----
QString temp = progress;
progress = QString::null;
! send( temp );
! progress = temp;
}
}
|