diff options
Diffstat (limited to 'kdejava/koala/org/kde/koala/SlaveBase.java')
-rw-r--r-- | kdejava/koala/org/kde/koala/SlaveBase.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kdejava/koala/org/kde/koala/SlaveBase.java b/kdejava/koala/org/kde/koala/SlaveBase.java index 238b1641..1aa6c8cb 100644 --- a/kdejava/koala/org/kde/koala/SlaveBase.java +++ b/kdejava/koala/org/kde/koala/SlaveBase.java @@ -53,14 +53,14 @@ public class SlaveBase implements QtSupport { /** Call to signal an error. This also finishes the job, no need to call finished. - If the Error code is KIO.ERR_SLAVE_DEFINED then the + If the Error code is TDEIO.ERR_SLAVE_DEFINED then the _text should contain the complete translated text of of the error message. This message will be displayed in an KTextBrowser which allows rich text complete with hyper links. Email links will call the default mailer, "exec:/command arg1 arg2" will be forked and all other links will call the default browser. - @param _errid the error code from KIO.Error + @param _errid the error code from TDEIO.Error @param _text the rich text error message @short Call to signal an error. @see Error @@ -495,7 +495,7 @@ public class SlaveBase implements QtSupport { why a previous authorization attempt failed. Here is a very simple example: <pre> - KIO.AuthInfo authInfo; + TDEIO.AuthInfo authInfo; if ( openPassDlg( authInfo ) ) { kdDebug() << String.fromLatin1("User: ") @@ -507,7 +507,7 @@ public class SlaveBase implements QtSupport { You can also preset some values like the username, caption or comment as follows: <pre> - KIO.AuthInfo authInfo; + TDEIO.AuthInfo authInfo; authInfo.caption= "Acme Password Dialog"; authInfo.username= "Wile E. Coyote"; String errorMsg = "You entered an incorrect password."; |