summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/TDEIO.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/TDEIO.java')
-rw-r--r--kdejava/koala/org/kde/koala/TDEIO.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdejava/koala/org/kde/koala/TDEIO.java b/kdejava/koala/org/kde/koala/TDEIO.java
index 716744ac..dbe92bf0 100644
--- a/kdejava/koala/org/kde/koala/TDEIO.java
+++ b/kdejava/koala/org/kde/koala/TDEIO.java
@@ -645,7 +645,7 @@ public class KIO {
public static native SimpleJob symlink(String target, KURL dest, boolean overwrite);
/**
Execute any command that is specific to one slave (protocol).
- Examples are : HTTP POST, mount and unmount (kio_file)
+ Examples are : HTTP POST, mount and unmount (tdeio_file)
@param url The URL isn't passed to the slave, but is used to know
which slave to send it to :-)
@param data Packed data. The meaning is completely dependent on the
@@ -659,7 +659,7 @@ public class KIO {
public static native SimpleJob special(KURL url, byte[] data);
/**
Mount filesystem.
- Special job for <code>kio_file.</code>
+ Special job for <code>tdeio_file.</code>
@param ro Mount read-only if <code>true.</code>
@param fstype File system type (e.g. "ext2", can be null).
@param dev Device (e.g. /dev/sda0).
@@ -673,7 +673,7 @@ public class KIO {
public static native SimpleJob mount(boolean ro, String fstype, String dev, String point);
/**
Unmount filesystem.
- Special job for <code>kio_file.</code>
+ Special job for <code>tdeio_file.</code>
@param point Point to unmount.
@param showProgressInfo true to show progress information
@return the job handling the operation.