summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KMainWindow.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KMainWindow.java')
-rw-r--r--kdejava/koala/org/kde/koala/KMainWindow.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/kdejava/koala/org/kde/koala/KMainWindow.java b/kdejava/koala/org/kde/koala/KMainWindow.java
index 3ee3c739..cb852c36 100644
--- a/kdejava/koala/org/kde/koala/KMainWindow.java
+++ b/kdejava/koala/org/kde/koala/KMainWindow.java
@@ -364,9 +364,9 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
@param force if set, even default settings are re-applied
@short Read settings for statusbar, menubar and toolbar from their respective groups in the config file and apply them.
*/
- public native void applyMainWindowSettings(KConfig config, String groupName, boolean force);
- public native void applyMainWindowSettings(KConfig config, String groupName);
- public native void applyMainWindowSettings(KConfig config);
+ public native void applyMainWindowSettings(TDEConfig config, String groupName, boolean force);
+ public native void applyMainWindowSettings(TDEConfig config, String groupName);
+ public native void applyMainWindowSettings(TDEConfig config);
/**
Save settings for statusbar, menubar and toolbar to their respective
groups in the config file <code>config.</code>
@@ -375,8 +375,8 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
group name is used
@short Save settings for statusbar, menubar and toolbar to their respective groups in the config file <code>config.</code>
*/
- public native void saveMainWindowSettings(KConfig config, String groupName);
- public native void saveMainWindowSettings(KConfig config);
+ public native void saveMainWindowSettings(TDEConfig config, String groupName);
+ public native void saveMainWindowSettings(TDEConfig config);
/**
Sets whether KMainWindow should provide a menu that allows showing/hiding
the available toolbars ( using KToggleToolBarAction ) . In case there
@@ -687,12 +687,12 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
in this function!
@short Save your instance-specific properties.
*/
- protected native void saveProperties(KConfig arg1);
+ protected native void saveProperties(TDEConfig arg1);
/**
Read your instance-specific properties.
@short Read your instance-specific properties.
*/
- protected native void readProperties(KConfig arg1);
+ protected native void readProperties(TDEConfig arg1);
/**
Save your application-wide properties. The function is
invoked when the session manager requests your application
@@ -707,15 +707,15 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
Default implementation does nothing.
@short Save your application-wide properties.
*/
- protected native void saveGlobalProperties(KConfig sessionConfig);
+ protected native void saveGlobalProperties(TDEConfig sessionConfig);
/**
The counterpart of saveGlobalProperties().
Read the application-specific properties in again.
@short The counterpart of saveGlobalProperties().
*/
- protected native void readGlobalProperties(KConfig sessionConfig);
- protected native void savePropertiesInternal(KConfig arg1, int arg2);
- protected native boolean readPropertiesInternal(KConfig arg1, int arg2);
+ protected native void readGlobalProperties(TDEConfig sessionConfig);
+ protected native void savePropertiesInternal(TDEConfig arg1, int arg2);
+ protected native boolean readPropertiesInternal(TDEConfig arg1, int arg2);
/**
For inherited classes
@short For inherited classes
@@ -731,14 +731,14 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
Note that the group must be set before calling
@short For inherited classes Note that the group must be set before calling
*/
- protected native void saveWindowSize(KConfig config);
+ protected native void saveWindowSize(TDEConfig config);
/**
For inherited classes
Note that the group must be set before calling, and that
a -geometry on the command line has priority.
@short For inherited classes Note that the group must be set before calling, and that a -geometry on the command line has priority.
*/
- protected native void restoreWindowSize(KConfig config);
+ protected native void restoreWindowSize(TDEConfig config);
protected native void parseGeometry(boolean parsewidth);
/**
Rebuilds the GUI after KEditToolbar changed the toolbar layout.