X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fio%2Ffile.cpp;fp=source%2Fio%2Ffile.cpp;h=c9e5d4978c5255e418c12d7794146e2d062f0667;hp=25e3b4af115855a6b332e99ebcf947599590cbc8;hb=c21ab7e49852585df01b4cc19599e25a918b581b;hpb=31e72f50fbb34d86877e5110401c49ce3fefd4bb diff --git a/source/io/file.cpp b/source/io/file.cpp index 25e3b4a..c9e5d49 100644 --- a/source/io/file.cpp +++ b/source/io/file.cpp @@ -82,8 +82,6 @@ File::File(const string &fn, Mode m, CreateMode cm) throw system_error(format("open(%s)", fn), err); } #endif - - set_events(P_INPUT); } File::~File() @@ -96,8 +94,6 @@ void File::close() if(!handle) return; - set_events(P_NONE); - signal_flush_required.emit(); #ifdef WIN32