summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/examples/kscribble/KScribbleApp.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/examples/kscribble/KScribbleApp.java')
-rw-r--r--kdejava/koala/examples/kscribble/KScribbleApp.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdejava/koala/examples/kscribble/KScribbleApp.java b/kdejava/koala/examples/kscribble/KScribbleApp.java
index b3bd5f9f..b2009802 100644
--- a/kdejava/koala/examples/kscribble/KScribbleApp.java
+++ b/kdejava/koala/examples/kscribble/KScribbleApp.java
@@ -13,7 +13,7 @@ import org.kde.koala.*;
* full session management as well as keyboard accelerator configuration by using KAccel.
* @see KMainWindow
* @see TDEApplication
- * @see KConfig
+ * @see TDEConfig
* @see KAccel
*
* @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team.
@@ -22,7 +22,7 @@ import org.kde.koala.*;
public class KScribbleApp extends KMainWindow implements Resource {
/** 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
@@ -638,7 +638,7 @@ public class KScribbleApp extends KMainWindow implements Resource {
* opened file by a temporary filename provided by TDEApplication.
* @see KTMainWindow#saveProperties
*/
- protected void saveProperties(KConfig _cfg) {
+ protected void saveProperties(TDEConfig _cfg) {
}
@@ -647,7 +647,7 @@ public class KScribbleApp extends KMainWindow implements Resource {
* temporary files saved by saveProperties()
* @see KTMainWindow#readProperties
*/
- protected void readProperties(KConfig _cfg) {
+ protected void readProperties(TDEConfig _cfg) {
}
/** queryClose is called by KTMainWindow on each closeEvent of a window. Against the