diff options
Diffstat (limited to 'kdejava/koala/org/kde/koala/MainWindow.java')
-rw-r--r-- | kdejava/koala/org/kde/koala/MainWindow.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdejava/koala/org/kde/koala/MainWindow.java b/kdejava/koala/org/kde/koala/MainWindow.java index 425acb20..a7f7d886 100644 --- a/kdejava/koala/org/kde/koala/MainWindow.java +++ b/kdejava/koala/org/kde/koala/MainWindow.java @@ -134,19 +134,19 @@ public class MainWindow extends KMainWindow implements PartBaseInterface { public native void setPartObject(TQObject object); public native TQObject partObject(); /** - Set the instance ( KInstance) for this part. + Set the instance ( TDEInstance) for this part. Call this first in the inherited class constructor, because it loads the i18n catalogues. - @short Set the instance ( KInstance) for this part. + @short Set the instance ( TDEInstance) for this part. */ - protected native void setInstance(KInstanceInterface instance); + protected native void setInstance(TDEInstanceInterface instance); /** - Set the instance ( KInstance) for this part. + Set the instance ( TDEInstance) for this part. Call this first in the inherited class constructor, because it loads the i18n catalogues. - @short Set the instance ( KInstance) for this part. + @short Set the instance ( TDEInstance) for this part. */ - protected native void setInstance(KInstanceInterface instance, boolean loadPlugins); + protected native void setInstance(TDEInstanceInterface instance, boolean loadPlugins); /** Load the Plugins honoring the PluginLoadingMode. If you call this method in an already constructed GUI (like when the user @@ -167,7 +167,7 @@ public class MainWindow extends KMainWindow implements PartBaseInterface { </pre> @short Load the Plugins honoring the PluginLoadingMode. */ - protected native void loadPlugins(TQObject parent, KXMLGUIClientInterface parentGUIClient, KInstanceInterface instance); + protected native void loadPlugins(TQObject parent, KXMLGUIClientInterface parentGUIClient, TDEInstanceInterface instance); /** For a KParts.Part: call this before setInstance(). For a KParts.MainWindow: call this before createGUI(). |