Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 25, 2008, 1:11:51 AM (17 years ago)
Author:
landauf
Message:
  • fixed a bug in CommandExecutor
  • InGameConsole wraps now too long output lines and does something similar for the input line
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/core/ArgumentCompletionFunctions.cc

    r1402 r1416  
    3535    namespace autocompletion
    3636    {
    37         const std::list<std::pair<std::string, std::string> >& fallback()
     37        std::list<std::pair<std::string, std::string> > fallback()
    3838        {
    39 std::cout << "5_1\n";
    40             static std::list<std::pair<std::string, std::string> > list;
    41 std::cout << "5_2\n";
     39            static std::list<std::pair<std::string, std::string> > list(1, std::pair<std::string, std::string>("muh", "MUH"));
    4240            return list;
    4341        }
Note: See TracChangeset for help on using the changeset viewer.