summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KFileDialog.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KFileDialog.java')
-rw-r--r--kdejava/koala/org/kde/koala/KFileDialog.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdejava/koala/org/kde/koala/KFileDialog.java b/kdejava/koala/org/kde/koala/KFileDialog.java
index 7f8957da..6c790874 100644
--- a/kdejava/koala/org/kde/koala/KFileDialog.java
+++ b/kdejava/koala/org/kde/koala/KFileDialog.java
@@ -323,14 +323,14 @@ public class KFileDialog extends KDialogBase {
You can use this to insert custom
items into it, e.g.:
<pre>
- yourAction = new KAction( i18n("Your Action"), 0,
+ yourAction = new TDEAction( i18n("Your Action"), 0,
this, SLOT("yourSlot()"),
this, "action name" );
yourAction.plug( tdefileDialog.toolBar() );
</pre>
@short Returns a pointer to the toolbar.
*/
- public native KToolBar toolBar();
+ public native TDEToolBar toolBar();
/**
@return a pointer to the OK-Button in the filedialog. You may use it
e.g. to set a custom text to it.
@@ -363,11 +363,11 @@ public class KFileDialog extends KDialogBase {
public native KURLBar speedBar();
/**
@return a pointer to the action collection, holding all the used
- KActions.
+ TDEActions.
@short
*/
- public native KActionCollection actionCollection();
+ public native TDEActionCollection actionCollection();
/**
@return the index of the path combobox so when inserting widgets into
the dialog (e.g. subclasses) they can do so without hardcoding in an index
@@ -756,7 +756,7 @@ public class KFileDialog extends KDialogBase {
@param startDir A url/directory, to be used. May use the ':' and '.' syntax
as documented in the KFileDialog() constructor.
@param recentDirClass If the ':' or '.' syntax is used, recentDirClass
- will contain the string to be used later for KRecentDir.dir()
+ will contain the string to be used later for TDERecentDir.dir()
@return The URL that should be listed by default (e.g. by KFileDialog or
KDirSelectDialog).