diff --git a/src/Fl_Native_File_Chooser_WIN32.cxx b/src/Fl_Native_File_Chooser_WIN32.cxx index 901c8fbf6..f33af11c8 100644 --- a/src/Fl_Native_File_Chooser_WIN32.cxx +++ b/src/Fl_Native_File_Chooser_WIN32.cxx @@ -375,7 +375,7 @@ static void RestoreCWD(char *thecwd) { // SHOW FILE BROWSER int Fl_WinAPI_Native_File_Chooser_Driver::showfile() { - bool unixpath = IsUnixPath(_directory) | IsUnixPath(_preset_file); // caller uses unix paths? + bool unixpath = IsUnixPath(_directory) || IsUnixPath(_preset_file); // caller uses unix paths? ClearOFN(); clear_pathnames(); size_t fsize = FNFC_MAX_PATH; diff --git a/src/fl_dnd_win32.cxx b/src/fl_dnd_win32.cxx index 5a4408191..9e69c290a 100644 --- a/src/fl_dnd_win32.cxx +++ b/src/fl_dnd_win32.cxx @@ -433,7 +433,7 @@ public: class FLDataObject : public IDataObject { DWORD m_cRefCount; - FLEnum *m_EnumF; + //FLEnum *m_EnumF; public: FLDataObject() { m_cRefCount = 1; }// m_EnumF = new FLEnum();} virtual ~FLDataObject() { }