Changeset 19 in cheroxy for trunk/src/CRXException.cpp


Ignore:
Timestamp:
11/08/12 17:12:01 (11 years ago)
Author:
cheese
Message:

#1 fix error on linux for r18

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/CRXException.cpp

    r18 r19  
    55#include "CRXException.h"
    66
    7 #include <stdarg.h>
    87#include <sstream>
    98
     
    6059CRXException::SetErrorMessage (const char   * aFile,
    6160                               const char   * aFunction,
    62                                const int        aLine,
     61                               const int    aLine,
    6362                               const char   * aFormat, ...)
    6463{
     
    147146    return aErrorStream.str();
    148147}
     148
     149void
     150CRXException::AddMessage (const char * aMessage)
     151{
     152    mMessage += aMessage;
     153}
Note: See TracChangeset for help on using the changeset viewer.