diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:02:53 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:02:53 -0600 |
commit | 545706afdcf29b8f584e78275452cca715e284db (patch) | |
tree | fdbfaa34f2d633372ba4ab3e46d22cf10f38b40b /kjsembed/docs | |
parent | 9d4971a2ffb5be9c6fc1b6d6bc74020c37fb2169 (diff) | |
download | tdebindings-545706afdcf29b8f584e78275452cca715e284db.tar.gz tdebindings-545706afdcf29b8f584e78275452cca715e284db.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kjsembed/docs')
-rw-r--r-- | kjsembed/docs/ChangeLog | 2 | ||||
-rw-r--r-- | kjsembed/docs/embedding/simple-embed/README | 2 | ||||
-rwxr-xr-x | kjsembed/docs/examples/imunge/imunge.js | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/kjsembed/docs/ChangeLog b/kjsembed/docs/ChangeLog index 4b14af71..1fb28d23 100644 --- a/kjsembed/docs/ChangeLog +++ b/kjsembed/docs/ChangeLog @@ -328,7 +328,7 @@ 2004-11-30 Tuesday 17:47 geiseri - test kconfig more robustly. + test tdeconfig more robustly. 2004-11-30 Tuesday 12:02 geiseri diff --git a/kjsembed/docs/embedding/simple-embed/README b/kjsembed/docs/embedding/simple-embed/README index 12f9642b..4d07166c 100644 --- a/kjsembed/docs/embedding/simple-embed/README +++ b/kjsembed/docs/embedding/simple-embed/README @@ -46,7 +46,7 @@ http://developer.kde.org/documentation/tutorials/xmlui/preface.html them more maintainable. For more details, consult : -http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html +http://developer.kde.org/documentation/tutorials/tdeconfigxt/tdeconfigxt.html * With KParts, you can embed other kde components in your program, or make your program embeddable in other apps. For example, the kmplayer kpart can be called to play videos 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' ); |