summaryrefslogtreecommitdiffstats
path: root/src/fileaccess.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2020-06-28 16:15:05 +0900
committerMichele Calgaro <[email protected]>2020-06-28 16:15:05 +0900
commitcaa6e331414e7ad44ce087abe4a8c491a61980c8 (patch)
tree18ef3fa2d2224b4be4f591b78a6b8f7993992e1d /src/fileaccess.h
parentbddb43436cfd5148c26bcfc33dbe6128ecdf6aae (diff)
downloadkdiff3-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.h2
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;