diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-06-28 16:15:05 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-06-28 16:44:04 +0900 |
| commit | f756c5c1ec5dc501780f76a8c6c1e221df74df57 (patch) | |
| tree | 6cb3d109bf66d813fa194ed486d625968ae2397a /src/fileaccess.h | |
| parent | 7817ecad88e53abd2ad9fbcb2bb14ff59691d874 (diff) | |
| download | kdiff3-f756c5c1ec5dc501780f76a8c6c1e221df74df57.tar.gz kdiff3-f756c5c1ec5dc501780f76a8c6c1e221df74df57.zip | |
Fixed detection of files in kdiff3_part.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit caa6e331414e7ad44ce087abe4a8c491a61980c8)
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; |
