-----------------------------------------------------------------------------
| 233 | |
| 234 | //----------------------------------------------------------------------------- |
| 235 | bool pqPythonFileIO::save() |
| 236 | { |
| 237 | if (this->File.Name.isEmpty()) |
| 238 | { |
| 239 | return this->saveAs(); |
| 240 | } |
| 241 | else |
| 242 | { |
| 243 | return this->saveBuffer(this->File.Name, this->File.Location); |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | //----------------------------------------------------------------------------- |
| 248 | void pqPythonFileIO::setModified(bool modified) |
no test coverage detected