summaryrefslogtreecommitdiffstats
path: root/tdeio/tdeio/tdefileitem.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-04-15 03:01:46 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-04-15 03:01:46 -0500
commitf6402c325a2374e72411ccf4f409f9368b4e42c6 (patch)
tree0e450df2b63832430890e8861b179529d0ee8aac /tdeio/tdeio/tdefileitem.h
parent1534608421fce31bafdade29a152f5d328958ddb (diff)
downloadtdelibs-f6402c325a2374e72411ccf4f409f9368b4e42c6.tar.gz
tdelibs-f6402c325a2374e72411ccf4f409f9368b4e42c6.zip
Fix a number of issues with the forwarding tdeioslave
This relates to Bug 1450
Diffstat (limited to 'tdeio/tdeio/tdefileitem.h')
-rw-r--r--tdeio/tdeio/tdefileitem.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/tdeio/tdeio/tdefileitem.h b/tdeio/tdeio/tdefileitem.h
index 95207a537..f068e3503 100644
--- a/tdeio/tdeio/tdefileitem.h
+++ b/tdeio/tdeio/tdefileitem.h
@@ -120,6 +120,20 @@ public:
void setURL( const KURL &url );
/**
+ * Returns the lister url of the file.
+ * @return the lister url of the file
+ * @internal
+ */
+ const KURL & listerURL() const { return m_listerURL; }
+
+ /**
+ * Sets the item's lister URL. Do not call unless you know what you are doing!
+ * @param url the item's lister URL
+ * @internal
+ */
+ void setListerURL( const KURL &url );
+
+ /**
* Sets the item's name (i.e. the filename).
* This is automatically done by setURL, to set the name from the URL's fileName().
* This method is provided for some special cases like relative paths as names (KFindPart)
@@ -583,6 +597,11 @@ private:
KURL m_url;
/**
+ * The lister url of the file
+ */
+ KURL m_listerURL;
+
+ /**
* The text for this item, i.e. the file name without path,
*/
TQString m_strName;