summaryrefslogtreecommitdiff
path: root/include/tools
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-01 10:51:15 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-01 12:14:45 +0300
commit856c749963b04604a52235a96b5af183fdf5125d (patch)
tree81fb68fec6b51212b1e155019ceb990ed0989947 /include/tools
parentfe41e4ba11f66d247ca4b09563c3ea21728fa410 (diff)
Kill FSYS_MAC which is for ancient non-OS X Mac
Change-Id: I51e91b97217507bcdca8c82f8a8683758d871185
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/urlobj.hxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/include/tools/urlobj.hxx b/include/tools/urlobj.hxx
index 53027c880e6b..ace1d76ba562 100644
--- a/include/tools/urlobj.hxx
+++ b/include/tools/urlobj.hxx
@@ -251,10 +251,6 @@ public:
*/
FSYS_DOS = 0x4,
- /** Mac notation (e.g., "dir:file").
- */
- FSYS_MAC = 0x8,
-
/** Detect the used notation.
@descr For the following descriptions, please note that
@@ -300,11 +296,10 @@ public:
becomes
"file:///" *UCS4
replacing the delimiter by "/" within <*UCS4>. The delimiter is
- that character from the set { "/", "\", ":" } which appears most
+ that character from the set { "/", "\" } which appears most
often in <*UCS4> (if FSYS_UNX is not among the style bits, "/"
is removed from the set; if FSYS_DOS is not among the style
- bits, "\" is removed from the set; if FSYS_MAC is not among the
- style bits, ":" is removed from the set). If two or more
+ bits, "\" is removed from the set). If two or more
characters appear the same number of times, the character
mentioned first in that set is chosen. If the first character
of <*UCS4> is the delimiter, that character is not copied.
@@ -843,7 +838,7 @@ public:
@param pDelimiter Upon successful return, this parameter can return
the character that is the 'main' delimiter within the returned file
- system path (e.g., "/" for Unix, "\" for DOS, ":" for Mac). This is
+ system path (e.g., "/" for Unix, "\" for DOS). This is
especially useful for routines that later try to shorten the returned
file system path at a 'good' position, e.g. to fit it into some
limited display space.