~brandontschaefer/nux/xim-tests

« back to all changes in this revision

Viewing changes to NuxCore/OutputDevice.h

  • Committer: Brandon Schaefer
  • Date: 2012-10-19 00:23:27 UTC
  • mfrom: (637.2.55 trunk)
  • Revision ID: brandon.schaefer@canonical.com-20121019002327-60e88jn3k8chi7gt
* Merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
  {
55
55
    NUX_DECLARE_GLOBAL_OBJECT (NullOutput, GlobalSingletonInitializer);
56
56
  public:
57
 
    void Serialize ( const TCHAR *V, const TCHAR *LogPrefix, int severity) {}
 
57
    void Serialize ( const TCHAR * /* V */, const TCHAR * /* LogPrefix */, int /* severity */) {}
58
58
  };
59
59
 
60
60
//! Output to log file.
84
84
 
85
85
  private:
86
86
    NSerializer    *m_LogSerializer;
87
 
    NString         m_Filename;
 
87
    std::string         m_Filename;
88
88
    bool            m_Opened;
89
89
    bool            m_Closed;
90
90