Add rtask module.
[bertos.git] / bertos / emul / emulwin.cpp
index b5f57cd455a61fd328355a7418cb8ea99e6a35ad..a49fa4807c910b8edcf4db0db853471e81df3718 100644 (file)
  * the GNU General Public License.
  *
  * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
- * Copyright 2000, 2001 Bernardo Innocenti <bernie@codewiz.org>
+ * Copyright 2000, 2001 Bernie Innocenti <bernie@codewiz.org>
  *
  * -->
  *
- * \version $Id$
  *
- * \author Bernardo Innocenti <bernie@develer.com>
+ * \author Bernie Innocenti <bernie@codewiz.org>
  *
  * \brief Main Qt window for embedded applications emulator (implementation)
  */
@@ -88,9 +87,9 @@ EmulWin::EmulWin(Emulator *e)
                // LCD
                QHBoxLayout *lay_lcd = new QHBoxLayout();
                box_right->addLayout(lay_lcd);
-                       lay_lcd->addStretch();
-                       lay_lcd->addWidget(e->emulLCD = new EmulLCD(central));
-                       lay_lcd->addStretch();
+                       lay_lcd->addStretch(1);
+                       lay_lcd->addWidget(e->emulLCD = new EmulLCD(central), 8);
+                       lay_lcd->addStretch(1);
 
                // Keyboard
                box_right->addWidget(e->emulKbd = new EmulKbd(central));
@@ -122,7 +121,7 @@ void EmulWin::about()
                "BeRTOS Embedded Application Emulator",
                "Version 0.1\n"
                "Copyright 2006, 2008 Develer S.r.l. (http://www.develer.com/)\n"
-               "Copyright 2001, 2002, 2003, 2005 Bernardo Innocenti <bernie@codewiz.org>\n"
+               "Copyright 2001, 2002, 2003, 2005 Bernie Innocenti <bernie@codewiz.org>\n"
                "All rights reserved."
        );
 }