summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/test/kbase/KBase.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/test/kbase/KBase.java')
-rw-r--r--kdejava/koala/test/kbase/KBase.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdejava/koala/test/kbase/KBase.java b/kdejava/koala/test/kbase/KBase.java
index 22f5c968..0e0117de 100644
--- a/kdejava/koala/test/kbase/KBase.java
+++ b/kdejava/koala/test/kbase/KBase.java
@@ -12,7 +12,7 @@ import org.kde.koala.*;
* full session management as well as using KActions.
* @see KMainWindow
* @see TDEApplication
- * @see KConfig
+ * @see TDEConfig
*
* @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team.
* @version KDevelop version 1.2 code generation
@@ -22,7 +22,7 @@ public class KBase extends KMainWindow
public static final int ID_STATUS_MSG = 1;
/** the configuration object of the application */
- private KConfig config;
+ private TDEConfig config;
/** view is the main widget which represents your working area. The View
* class should handle all events of the view widget. It is kept empty so
* you can create your view according to your application's needs by
@@ -233,7 +233,7 @@ protected void readOptions()
* opened file by a temporary filename provided by TDEApplication.
* @see KTMainWindow#saveProperties
*/
-protected void saveProperties(KConfig _cfg)
+protected void saveProperties(TDEConfig _cfg)
{
if(doc.URL().fileName()!=tr("Untitled") && !doc.isModified())
{
@@ -257,7 +257,7 @@ protected void saveProperties(KConfig _cfg)
* temporary files saved by saveProperties()
* @see KTMainWindow#readProperties
*/
-protected void readProperties(KConfig _cfg)
+protected void readProperties(TDEConfig _cfg)
{
String filename = _cfg.readEntry("filename", "");
KURL url = new KURL(filename);