diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwindow.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mainwindow.cc b/src/mainwindow.cc index 696ce97..6e9f77b 100644 --- a/src/mainwindow.cc +++ b/src/mainwindow.cc @@ -31,6 +31,9 @@ /* * $Log$ + * Revision 1.44 2005/07/27 12:47:56 deva + * CVS: ---------------------------------------------------------------------- + * * Revision 1.43 2005/07/27 12:40:47 deva * *** empty log message *** * @@ -458,11 +461,11 @@ void MainWindow::message(char *msg) void MainWindow::clear() { info->log("Clearing screen."); - // History widgets - QImage dummy_resized = img_dummy->smoothScale(240, 192); + + // History widgets for(int i = 0; i < NUM_HISTORY; i++) { - img_history[i]->setPixmap(dummy_resized); + img_history[i]->set_image(img_dummy); } lbl_name->setText(""); |