diff options
Diffstat (limited to 'kdejava/koala/org/kde/koala/KDockMainWindow.java')
-rw-r--r-- | kdejava/koala/org/kde/koala/KDockMainWindow.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdejava/koala/org/kde/koala/KDockMainWindow.java b/kdejava/koala/org/kde/koala/KDockMainWindow.java index a91401ff..ea035134 100644 --- a/kdejava/koala/org/kde/koala/KDockMainWindow.java +++ b/kdejava/koala/org/kde/koala/KDockMainWindow.java @@ -148,22 +148,22 @@ public class KDockMainWindow extends KMainWindow { */ public native void readDockConfig(TQDomElement base); /** - It writes the current dock state in the given section of KConfig. + It writes the current dock state in the given section of TDEConfig. @param c KDE class for saving configurations @param group name of section to write to - @short It writes the current dock state in the given section of KConfig. + @short It writes the current dock state in the given section of TDEConfig. */ - public native void writeDockConfig(KConfig c, String group); - public native void writeDockConfig(KConfig c); + public native void writeDockConfig(TDEConfig c, String group); + public native void writeDockConfig(TDEConfig c); public native void writeDockConfig(); /** - It reads the current dock state from the given section of KConfig. + It reads the current dock state from the given section of TDEConfig. @param c KDE class for saving configurations @param group name of section to read from - @short It reads the current dock state from the given section of KConfig. + @short It reads the current dock state from the given section of TDEConfig. */ - public native void readDockConfig(KConfig c, String group); - public native void readDockConfig(KConfig c); + public native void readDockConfig(TDEConfig c, String group); + public native void readDockConfig(TDEConfig c); public native void readDockConfig(); /** It runs through all dockwidgets which are under control of the dockmanager and calls show() for every |