Changeset 17229 for trunk/FACT++


Ignore:
Timestamp:
10/16/13 21:02:33 (11 years ago)
Author:
tbretz
Message:
Use Queue from externals instead of src.
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/WindowLog.cc

    r16881 r17229  
    137137}
    138138
    139 void WindowLog::WriteFile(const string &sout)
     139bool WindowLog::WriteFile(const string &sout)
    140140{
    141141    fMuxFile.lock();
     
    143143    fLogFile.flush();
    144144    fMuxFile.unlock();
     145
     146    return true;
    145147}
    146148
  • trunk/FACT++/src/WindowLog.h

    r16832 r17229  
    99#include <ncurses.h> // A_NORMAL etc
    1010
    11 #include "queue.h"
     11#include "../externals/Queue.h"
    1212
    1313/// Stream manipulators to change the color of a WindowLog stream
     
    8383    void AddColor(int m);
    8484
    85     void WriteFile(const std::string &);
     85    bool WriteFile(const std::string &);
    8686    void WriteBuffer();
    8787
Note: See TracChangeset for help on using the changeset viewer.