From 678d79bf174f51b28ceb8dd0450d08bc7b99e194 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 9 Feb 2013 12:04:23 -0600 Subject: Fix FTBFS --- kdejava/koala/org/kde/koala/KFileItem.java | 6 +++--- kdejava/koala/org/kde/koala/KProtocolInfo.java | 2 +- kdejava/koala/org/kde/koala/KURLCompletion.java | 6 +++--- kdejava/koala/org/kde/koala/MetaInfoJob.java | 4 ++-- kdejava/koala/org/kde/koala/NetAccess.java | 2 +- kdejava/koala/org/kde/koala/ReadOnlyPart.java | 8 ++++---- kdejava/koala/org/kde/koala/Scheduler.java | 2 +- kdejava/koala/org/kde/koala/StatJob.java | 4 ++-- kdejava/koala/org/kde/koala/TDEHTMLPart.java | 2 +- kdejava/koala/org/kde/koala/TDEIO.java | 12 ++++++------ kdejava/koala/org/kde/koala/URLArgs.java | 4 ++-- 11 files changed, 26 insertions(+), 26 deletions(-) (limited to 'kdejava/koala') diff --git a/kdejava/koala/org/kde/koala/KFileItem.java b/kdejava/koala/org/kde/koala/KFileItem.java index 5326f280..d3399d9a 100644 --- a/kdejava/koala/org/kde/koala/KFileItem.java +++ b/kdejava/koala/org/kde/koala/KFileItem.java @@ -29,7 +29,7 @@ public class KFileItem implements QtSupport { /** Creates an item representing a file, from a UDSEntry. This is the preferred constructor when using TDEIO.listDir(). - @param _entry the KIO entry used to get the file, contains info about it + @param _entry the TDEIO entry used to get the file, contains info about it @param _url the file url @param _determineMimeTypeOnDemand specifies if the mimetype of the given URL should be determined immediately or on demand @@ -226,11 +226,11 @@ public class KFileItem implements QtSupport { */ public native String linkDest(); /** - Returns the local path if isLocalFile() == true or the KIO item has + Returns the local path if isLocalFile() == true or the TDEIO item has a UDS_LOCAL_PATH atom. @return the item local path, or null if not known - @short Returns the local path if isLocalFile() == true or the KIO item has a UDS_LOCAL_PATH atom. + @short Returns the local path if isLocalFile() == true or the TDEIO item has a UDS_LOCAL_PATH atom. */ public native String localPath(); /** diff --git a/kdejava/koala/org/kde/koala/KProtocolInfo.java b/kdejava/koala/org/kde/koala/KProtocolInfo.java index 01f0913b..46e26b45 100644 --- a/kdejava/koala/org/kde/koala/KProtocolInfo.java +++ b/kdejava/koala/org/kde/koala/KProtocolInfo.java @@ -340,7 +340,7 @@ public class KProtocolInfo extends KSycocaEntry { public static native boolean canRenameToFile(KURL url); /** Returns whether the protocol can recursively delete directories by itself. - If not (the usual case) then KIO will list the directory and delete files + If not (the usual case) then TDEIO will list the directory and delete files and empty directories one by one. This corresponds to the "deleteRecursive=" field in the protocol description file. Valid values for this field are "true" or "false" (default). diff --git a/kdejava/koala/org/kde/koala/KURLCompletion.java b/kdejava/koala/org/kde/koala/KURLCompletion.java index aa470c48..339499bc 100644 --- a/kdejava/koala/org/kde/koala/KURLCompletion.java +++ b/kdejava/koala/org/kde/koala/KURLCompletion.java @@ -62,10 +62,10 @@ public class KURLCompletion extends TDECompletion { /** Finds completions to the given text. Remote URLs are listed with TDEIO. For performance reasons, local files - are listed with KIO only if KURLCOMPLETION_LOCAL_KIO is set. - The completion is done asyncronously if KIO is used. + are listed with TDEIO only if KURLCOMPLETION_LOCAL_TDEIO is set. + The completion is done asyncronously if TDEIO is used. Returns the first match for user, environment, and local dir completion - and null for asynchronous completion (KIO or threaded). + and null for asynchronous completion (TDEIO or threaded). @param text the text to complete @return the first match, or null if not found diff --git a/kdejava/koala/org/kde/koala/MetaInfoJob.java b/kdejava/koala/org/kde/koala/MetaInfoJob.java index 64b1cbb2..7a58b376 100644 --- a/kdejava/koala/org/kde/koala/MetaInfoJob.java +++ b/kdejava/koala/org/kde/koala/MetaInfoJob.java @@ -8,9 +8,9 @@ import java.util.ArrayList; /** - MetaInfoJob is a KIO Job to retrieve meta information from files. + MetaInfoJob is a TDEIO Job to retrieve meta information from files. See {@link MetaInfoJobSignals} for signals emitted by MetaInfoJob - @short KIO Job to retrieve meta information from files. + @short TDEIO Job to retrieve meta information from files. */ public class MetaInfoJob extends Job { diff --git a/kdejava/koala/org/kde/koala/NetAccess.java b/kdejava/koala/org/kde/koala/NetAccess.java index 11dd4188..72c5e49f 100644 --- a/kdejava/koala/org/kde/koala/NetAccess.java +++ b/kdejava/koala/org/kde/koala/NetAccess.java @@ -23,7 +23,7 @@ import org.kde.qt.TQObject; namespace for static functions, though an instance of the class is built for internal purposes. Port to tdeio done by David Faure, faure@kde.org - @short Provides an easy, synchronous interface to KIO file operations. + @short Provides an easy, synchronous interface to TDEIO file operations. */ public class NetAccess extends TQObject { diff --git a/kdejava/koala/org/kde/koala/ReadOnlyPart.java b/kdejava/koala/org/kde/koala/ReadOnlyPart.java index f15642bb..c94665c6 100644 --- a/kdejava/koala/org/kde/koala/ReadOnlyPart.java +++ b/kdejava/koala/org/kde/koala/ReadOnlyPart.java @@ -35,17 +35,17 @@ public class ReadOnlyPart extends Part { */ /** Call this to turn off the progress info dialog used by - the internal KIO job. Use this if you provide another way + the internal TDEIO job. Use this if you provide another way of displaying progress info (e.g. a statusbar), using the signals emitted by this class, and/or those emitted by the Job given by started. - @short Call this to turn off the progress info dialog used by the internal KIO job. + @short Call this to turn off the progress info dialog used by the internal TDEIO job. */ public native void setProgressInfoEnabled(boolean show); /** Returns whether the part shows the progress info dialog used by internal - KIO job. - @short Returns whether the part shows the progress info dialog used by internal KIO job. + TDEIO job. + @short Returns whether the part shows the progress info dialog used by internal TDEIO job. */ public native boolean isProgressInfoEnabled(); public native void showProgressInfo(boolean show); diff --git a/kdejava/koala/org/kde/koala/Scheduler.java b/kdejava/koala/org/kde/koala/Scheduler.java index 1493b2d0..e9e49448 100644 --- a/kdejava/koala/org/kde/koala/Scheduler.java +++ b/kdejava/koala/org/kde/koala/Scheduler.java @@ -153,7 +153,7 @@ public class Scheduler extends TQObject implements DCOPObjectInterface { Send the slave that was put on hold back to TDELauncher. This allows another process to take over the slave and resume the job the that was started. - Register the mainwindow wid with the KIO subsystem + Register the mainwindow wid with the TDEIO subsystem Do not call this, it is called automatically from void TDEIO.Job.setWindow(TQWidget). @param wid the window to register diff --git a/kdejava/koala/org/kde/koala/StatJob.java b/kdejava/koala/org/kde/koala/StatJob.java index 98223846..73a7b62f 100644 --- a/kdejava/koala/org/kde/koala/StatJob.java +++ b/kdejava/koala/org/kde/koala/StatJob.java @@ -7,9 +7,9 @@ import org.kde.qt.QtSupport; /** - A KIO job that retrieves information about a file or directory. + A TDEIO job that retrieves information about a file or directory. See {@link StatJobSignals} for signals emitted by StatJob - @short A KIO job that retrieves information about a file or directory. + @short A TDEIO job that retrieves information about a file or directory. @see #stat */ diff --git a/kdejava/koala/org/kde/koala/TDEHTMLPart.java b/kdejava/koala/org/kde/koala/TDEHTMLPart.java index abcb40d9..3d096a19 100644 --- a/kdejava/koala/org/kde/koala/TDEHTMLPart.java +++ b/kdejava/koala/org/kde/koala/TDEHTMLPart.java @@ -185,7 +185,7 @@ public class TDEHTMLPart extends ReadOnlyPart { public native boolean closeURL(); /** Called when a certain error situation (i.e. connection timed out) occurred. - The default implementation either shows a KIO error dialog or loads a more + The default implementation either shows a TDEIO error dialog or loads a more verbose error description a as page, depending on the users configuration. job is the job that signaled the error situation @short Called when a certain error situation (i. diff --git a/kdejava/koala/org/kde/koala/TDEIO.java b/kdejava/koala/org/kde/koala/TDEIO.java index 69a17a95..69ea3559 100644 --- a/kdejava/koala/org/kde/koala/TDEIO.java +++ b/kdejava/koala/org/kde/koala/TDEIO.java @@ -12,10 +12,10 @@ import org.kde.qt.TQWidget; /** - @short A namespace for KIO globals. + @short A namespace for TDEIO globals. */ -public class KIO { +public class TDEIO { public static final int S_SKIP = 1; public static final int S_AUTO_SKIP = 2; public static final int S_CANCEL = 0; @@ -213,8 +213,8 @@ public class KIO { public static final int HTTP_UNKNOWN = -1; /** - Identifiers for KIO informational messages. - @short Identifiers for KIO informational messages. + Identifiers for TDEIO informational messages. + @short Identifiers for TDEIO informational messages. */ public static final int INF_TOTAL_SIZE = 10; public static final int INF_PROCESSED_SIZE = 11; @@ -231,8 +231,8 @@ public class KIO { public static final int INF_MESSAGEBOX = 29; /** - Identifiers for KIO data messages. - @short Identifiers for KIO data messages. + Identifiers for TDEIO data messages. + @short Identifiers for TDEIO data messages. */ public static final int MSG_DATA = 100; public static final int MSG_DATA_REQ = 101; diff --git a/kdejava/koala/org/kde/koala/URLArgs.java b/kdejava/koala/org/kde/koala/URLArgs.java index 0a4d639c..e1a9f7d5 100644 --- a/kdejava/koala/org/kde/koala/URLArgs.java +++ b/kdejava/koala/org/kde/koala/URLArgs.java @@ -76,8 +76,8 @@ public class URLArgs implements QtSupport { public native void setNewTab(boolean newTab); public native boolean newTab(); /** - Meta-data to associate with the next KIO operation - @short Meta-data to associate with the next KIO operation + Meta-data to associate with the next TDEIO operation + @short Meta-data to associate with the next TDEIO operation @see TransferJob @see #etc# */ -- cgit v1.2.1