diff options
author | Michele Calgaro <[email protected]> | 2020-06-28 16:15:05 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-06-28 16:15:05 +0900 |
commit | caa6e331414e7ad44ce087abe4a8c491a61980c8 (patch) | |
tree | 18ef3fa2d2224b4be4f591b78a6b8f7993992e1d /src/fileaccess.h | |
parent | bddb43436cfd5148c26bcfc33dbe6128ecdf6aae (diff) | |
download | kdiff3-caa6e331414e7ad44ce087abe4a8c491a61980c8.tar.gz kdiff3-caa6e331414e7ad44ce087abe4a8c491a61980c8.zip |
Fixed detection of files in kdiff3_part.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/fileaccess.h')
-rw-r--r-- | src/fileaccess.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fileaccess.h b/src/fileaccess.h index 9338a85..d6afad0 100644 --- a/src/fileaccess.h +++ b/src/fileaccess.h @@ -31,6 +31,7 @@ public: FileAccess(); ~FileAccess(); FileAccess( const TQString& name, bool bWantToWrite=false ); // name: local file or dirname or url (when supported) + FileAccess( const TQString& workingDir, const TQString& name, bool bWantToWrite=false ); // name: local file or dirname or url (when supported) void setFile( const TQString& name, bool bWantToWrite=false ); bool isValid() const; @@ -101,6 +102,7 @@ private: bool m_bHidden; long m_fileType; // for testing only + TQString m_workingDir; TQString m_linkTarget; TQString m_user; TQString m_group; |