Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7456 in orxonox.OLD for trunk/src


Ignore:
Timestamp:
Apr 29, 2006, 11:23:10 PM (18 years ago)
Author:
bensch
Message:

trunk: work work…

Location:
trunk/src/lib
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/graphics/text_engine/multi_line_text.cc

    r7455 r7456  
    4545  this->setupTextWidth();
    4646}
     47
    4748
    4849/**
  • trunk/src/lib/shell/shell_command.cc

    r7422 r7456  
    3939  {
    4040    this->setClassID(CL_SHELL_COMMAND, "ShellCommand");
    41     PRINTF(5)("create shellcommand %s %s\n", commandName, className);
     41    PRINTF(4)("create shellcommand '%s' for class '%s'\n", commandName.c_str(), className.c_str());
    4242    this->setName(commandName);
    4343
  • trunk/src/lib/shell/shell_input.cc

    r7455 r7456  
    2929#include "stdlibincl.h"
    3030#include "key_names.h"
    31 
    32 
    33 
    34 
    3531
    3632namespace OrxShell
     
    4642  */
    4743  ShellInput::ShellInput ()
    48       : MultiLineText ("")
    49   {
    50     this->setLineWidth(100);
    51 
     44      : Text ("")
     45  {
    5246    this->pressedKey = SDLK_FIRST;
    5347    this->setClassID(CL_SHELL_INPUT, "ShellInput");
  • trunk/src/lib/shell/shell_input.h

    r7455 r7456  
    1010#define _SHELL_INPUT_H
    1111
    12 #include "multi_line_text.h"
     12#include "text.h"
    1313#include "event_listener.h"
    1414#include "shell_completion.h"
     
    2828   * [UP] and [DOWN] move through the history of allready given commands.
    2929   */
    30   class ShellInput : public MultiLineText,  public EventListener
     30  class ShellInput : public Text,  public EventListener
    3131  {
    3232
Note: See TracChangeset for help on using the changeset viewer.