summaryrefslogtreecommitdiffstats
path: root/kjsembed/docs/examples
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:02:53 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:02:53 -0600
commit545706afdcf29b8f584e78275452cca715e284db (patch)
treefdbfaa34f2d633372ba4ab3e46d22cf10f38b40b /kjsembed/docs/examples
parent9d4971a2ffb5be9c6fc1b6d6bc74020c37fb2169 (diff)
downloadtdebindings-545706afdcf29b8f584e78275452cca715e284db.tar.gz
tdebindings-545706afdcf29b8f584e78275452cca715e284db.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kjsembed/docs/examples')
-rwxr-xr-xkjsembed/docs/examples/imunge/imunge.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/kjsembed/docs/examples/imunge/imunge.js b/kjsembed/docs/examples/imunge/imunge.js
index 6f75cbf1..137cb272 100755
--- a/kjsembed/docs/examples/imunge/imunge.js
+++ b/kjsembed/docs/examples/imunge/imunge.js
@@ -92,7 +92,7 @@ mw.openFile = function()
if ( filename.length > 0 ) {
this.load( filename );
openrecent_action.addURL( filename );
- openrecent_action.saveEntries( System.KJSConfig.kconfig(), 'test' );
+ openrecent_action.saveEntries( System.KJSConfig.tdeconfig(), 'test' );
System.KJSConfig.sync();
}
}
@@ -117,7 +117,7 @@ mw.saveFileAs = function()
sb.message( filename );
this.imgfile = filename;
openrecent_action.addURL( filename );
- openrecent_action.saveEntries( System.KJSConfig.kconfig(), 'test' );
+ openrecent_action.saveEntries( System.KJSConfig.tdeconfig(), 'test' );
System.KJSConfig.sync();
}
}
@@ -154,7 +154,7 @@ mw.setup_actions = function()
openrecent_action = StdAction.openRecent( null, '', ac );
openrecent_action.connect( openrecent_action, 'urlSelected(const KURL&)', this, 'load' );
- openrecent_action.loadEntries( System.KJSConfig.kconfig(), 'test' );
+ openrecent_action.loadEntries( System.KJSConfig.tdeconfig(), 'test' );
save_action = StdAction.save( null, '', ac );
save_action.connect( save_action, 'activated()', this, 'saveFile' );