summaryrefslogtreecommitdiffstats
path: root/krusader/KrJS/krjs.h
diff options
context:
space:
mode:
Diffstat (limited to 'krusader/KrJS/krjs.h')
-rw-r--r--krusader/KrJS/krjs.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/krusader/KrJS/krjs.h b/krusader/KrJS/krjs.h
deleted file mode 100644
index 256d07a..0000000
--- a/krusader/KrJS/krjs.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// Interface for our JavaScript-Interpreter
-//
-// Author: Jonas Bähr (C) 2005
-//
-// Copyright: See COPYING file that comes with this distribution
-//
-
-#ifndef KRJS_H
-#define KRJS_H
-
-#include <kjsembed/kjsembedpart.h>
-
-/**
- * Our own version of KJSEmbedPart. Here are all the Krusader-specific extensions implemented.
- *
- * @author Jonas Bähr (http://jonas-baehr.de/)
-*/
-
-class KrJS: public KJSEmbed::KJSEmbedPart {
-public:
- KrJS();
-
- /**
- * This loads and runs a file. In addition to the original runFile function it displays an popup
- * on errors and sets some variables
- *
- * @par filename The file to run
- */
- bool runFile(const TQString & filename);
-};
-
-#endif //KRJS_H