Salome HOME
Compilation error in SMESHGUI_ExtrusionAlongPathDlg
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_FileValidator.cxx
index ecf7658e68f1b19b8e3770473da994fa7c2103d4..3583310ce4ff1025ec07cbbf25333bf2370b4f1a 100755 (executable)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -72,3 +72,10 @@ bool SMESHGUI_FileValidator::canSave( const QString& fileName, bool checkPermiss
   }
   return true;
 }
+
+bool SMESHGUI_FileValidator::isOverwrite( const QString& fileName) const
+{
+  if ( QFile::exists( fileName ) )
+    return myIsOverwrite;
+  return true;
+}