Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7148


Ignore:
Timestamp:
Jun 13, 2010, 10:56:15 PM (14 years ago)
Author:
adrfried
Message:

Typos fixed (recIEved → recEIved)

Location:
code/branches/presentation3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation3/data/levels/Quest_PirateAttack.oxw

    r7103 r7148  
    5757                <GlobalQuest id="3159b4d4-bc86-4190-ba1d-4530668dfe31">
    5858                    <QuestDescription title="The stolen stick..."
    59                     description="Now you can see it: There are more pirates... the pirates you killed were only a small part of the whole fleet. You recieved a message from your Headquarter: The pirates have stolen
     59                    description="Now you can see it: There are more pirates... the pirates you killed were only a small part of the whole fleet. You received a message from your Headquarter: The pirates have stolen
    6060                            a very important memory stick with secret infos (military locations etc.), the holy stick. You must get it back! Otherwise the humans are in great danger..."
    6161                    failmessage=""
  • code/branches/presentation3/src/libraries/core/XMLPort.h

    r6417 r7148  
    197197    @param loadfunction The function to add a new object to the class
    198198    @param loadfunction The function to get all added objects from the class
    199     @param xmlelement The XMLElement (recieved through the XMLPort function)
     199    @param xmlelement The XMLElement (received through the XMLPort function)
    200200    @param mode The mode (load/save) (received through the XMLPort function)
    201201    @param bApplyLoaderMask If this is true, an added sub-object gets loaded only if it's class is included in the Loaders ClassTreeMask (this is usually false)
  • code/branches/presentation3/src/libraries/network/packet/ClassID.cc

    r6964 r7148  
    145145    COUT(3) << "processing classid: " << networkID << " name: " << classname << " id: " << id << std::endl;
    146146    if(id==NULL){
    147       COUT(0) << "Recieved a bad classname" << endl;
     147      COUT(0) << "Received a bad classname" << endl;
    148148      abort();
    149149    }
  • code/branches/presentation3/src/libraries/util/SignalHandler.cc

    r5738 r7148  
    124124      if( SignalHandler::singletonPtr_s == 0 )
    125125      {
    126         COUT(0) << "recieved signal " << sigName.c_str() << std::endl << "can't write backtrace because SignalHandler already destroyed" << std::endl;
     126        COUT(0) << "received signal " << sigName.c_str() << std::endl << "can't write backtrace because SignalHandler already destroyed" << std::endl;
    127127        exit(EXIT_FAILURE);
    128128      }
     
    134134
    135135
    136       COUT(0) << "recieved signal " << sigName.c_str() << std::endl << "try to write backtrace to file orxonox_crash.log" << std::endl;
     136      COUT(0) << "received signal " << sigName.c_str() << std::endl << "try to write backtrace to file orxonox_crash.log" << std::endl;
    137137
    138138      int sigPipe[2];
Note: See TracChangeset for help on using the changeset viewer.