Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1893 in orxonox.OLD


Ignore:
Timestamp:
May 14, 2004, 2:35:27 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/gui: added guicc: a c++ version of the gui, that should be object-oriented

Location:
orxonox/branches/gui
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/gui/console/orxonox_console.cc

    r1890 r1893  
    3131void OrxonoxConsole::createWindow ()
    3232{
    33   //entry = new OrxonoxConsoleEntry(*log, entry);
    3433 
    3534  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
  • orxonox/branches/gui/console/orxonox_console_entry.cc

    r1891 r1893  
    2929
    3030
    31 /*
    32 OrxonoxConsoleEntry::OrxonoxConsoleEntry(OrxonoxConsoleLog* log,
    33                                          OrxonoxConsoleEntry* test)
     31OrxonoxConsoleEntry::OrxonoxConsoleEntry()
     32{}
     33
     34OrxonoxConsoleEntry::OrxonoxConsoleEntry(OrxonoxConsoleLog* log)
    3435{
    35   consoleLog = log;
     36  consoleLog = log;
     37}
    3638
    37 }
    38 */
    3939
    4040GtkWidget* OrxonoxConsoleEntry::createEntry()
  • orxonox/branches/gui/console/orxonox_console_entry.h

    r1890 r1893  
    2525
    2626 public:
    27   //OrxonoxConsoleEntry(OrxonoxConsoleLog* log, OrxonoxConsoleEntry* test);
     27  OrxonoxConsoleEntry(void);
     28  OrxonoxConsoleEntry(OrxonoxConsoleLog* log);
    2829 
    2930  GtkWidget* createEntry(void);
Note: See TracChangeset for help on using the changeset viewer.