summaryrefslogtreecommitdiffstats
path: root/tdeio/tdeio/global.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-05-07 23:49:47 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-05-07 23:49:47 -0500
commitb4a23465b612356d94db0f66fc728b90dc3d0dca (patch)
tree8a62173d671284d054d297bcb343b9d15bc96b4e /tdeio/tdeio/global.h
parentecaf622512756000f3abf9687a0f3bfbadd8c75d (diff)
downloadtdelibs-b4a23465b612356d94db0f66fc728b90dc3d0dca.tar.gz
tdelibs-b4a23465b612356d94db0f66fc728b90dc3d0dca.zip
Use standard unicode forward slash representation if available instead of nonstandard HTML encoding
This resolves Bug 269
Diffstat (limited to 'tdeio/tdeio/global.h')
-rw-r--r--tdeio/tdeio/global.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeio/tdeio/global.h b/tdeio/tdeio/global.h
index 1cec378e3..e10e5b4a8 100644
--- a/tdeio/tdeio/global.h
+++ b/tdeio/tdeio/global.h
@@ -118,7 +118,7 @@ namespace TDEIO
/**
* Encodes (from the text displayed to the real filename)
- * This translates % into %% and / into %2f
+ * This translates % into %% and / into ∕ (U+2215, DIVISION SLASH)
* Used by TDEIO::link, for instance.
* @param str the file name to encode
* @return the encoded file name
@@ -126,7 +126,7 @@ namespace TDEIO
TDEIO_EXPORT TQString encodeFileName( const TQString & str );
/**
* Decodes (from the filename to the text displayed)
- * This translates %2[fF] into / and %% into %
+ * This translates %2[fF] into /, %% into %, and ∕ (U+2215, DIVISION SLASH) into /
* @param str the file name to decode
* @return the decoded file name
*/
@@ -502,7 +502,7 @@ public:
};
/**
- * An entry is the list of atoms containing all the informations for a file or URL
+ * An entry is the list of atoms containing all the information for a file or URL
*/
typedef TQValueList<UDSAtom> UDSEntry;
typedef TQValueList<UDSEntry> UDSEntryList;