summaryrefslogtreecommitdiffstats
path: root/kate/kjswrapper
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitcee3e820d889e03e7f9704af40436eef3dab6c71 (patch)
treecf514a4de329cbc8521e2b617d4ac4f45b710672 /kate/kjswrapper
parent89761f7206a1d363dad8e5759184b0af8077ead5 (diff)
downloadtdeaddons-cee3e820d889e03e7f9704af40436eef3dab6c71.tar.gz
tdeaddons-cee3e820d889e03e7f9704af40436eef3dab6c71.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/kjswrapper')
-rw-r--r--kate/kjswrapper/plugin_katekjswrapper.cpp4
-rw-r--r--kate/kjswrapper/plugin_katekjswrapper.h2
-rw-r--r--kate/kjswrapper/samples/katekjstest1.js36
3 files changed, 21 insertions, 21 deletions
diff --git a/kate/kjswrapper/plugin_katekjswrapper.cpp b/kate/kjswrapper/plugin_katekjswrapper.cpp
index 4ebac34..521024c 100644
--- a/kate/kjswrapper/plugin_katekjswrapper.cpp
+++ b/kate/kjswrapper/plugin_katekjswrapper.cpp
@@ -371,8 +371,8 @@ void PluginKateKJSWrapper::applyConfig( KateKJSWrapperConfigPage *p )
}
KateKJSWrapperConfigPage::KateKJSWrapperConfigPage(KJS::Object pageConstructor,PluginKateKJSWrapper* tqparent,
- TQWidget *tqparentWidget)
- : Kate::PluginConfigPage( tqparentWidget ),m_plugin(tqparent)
+ TQWidget *parentWidget)
+ : Kate::PluginConfigPage( parentWidget ),m_plugin(tqparent)
{
TQVBoxLayout *l=new TQVBoxLayout(this);
l->setAutoAdd(true);
diff --git a/kate/kjswrapper/plugin_katekjswrapper.h b/kate/kjswrapper/plugin_katekjswrapper.h
index ee6a311..31300d9 100644
--- a/kate/kjswrapper/plugin_katekjswrapper.h
+++ b/kate/kjswrapper/plugin_katekjswrapper.h
@@ -122,7 +122,7 @@ class KateKJSWrapperConfigPage : public Kate::PluginConfigPage
friend class PluginKateKJSWrapper;
public:
- KateKJSWrapperConfigPage(KJS::Object pageConstructor,PluginKateKJSWrapper* tqparent = 0L, TQWidget *tqparentWidget = 0L);
+ KateKJSWrapperConfigPage(KJS::Object pageConstructor,PluginKateKJSWrapper* tqparent = 0L, TQWidget *parentWidget = 0L);
~KateKJSWrapperConfigPage() {};
/** Reimplemented from Kate::PluginConfigPage
diff --git a/kate/kjswrapper/samples/katekjstest1.js b/kate/kjswrapper/samples/katekjstest1.js
index a8b061b..7e4e041 100644
--- a/kate/kjswrapper/samples/katekjstest1.js
+++ b/kate/kjswrapper/samples/katekjstest1.js
@@ -1,7 +1,7 @@
/****************************************************************
First configuration page
****************************************************************/
-function Page1 (tqparentWidget) {
+function Page1 (parentWidget) {
this.defaults=function() {
alert("Defaults has been called");
}
@@ -11,7 +11,7 @@ function Page1 (tqparentWidget) {
this.reset=function() {
alert("Reset defaults has been called");
}
- box=new QVBox(tqparentWidget);
+ box=new QVBox(parentWidget);
this.button1=new QPushButton(box);
this.button1.text="P1 Button 1";
this.button1.show();
@@ -27,8 +27,8 @@ Page1.fullName="Test1/Page1";
Second configuration page
****************************************************************/
-function Page2 (tqparentWidget) {
- box=new QVBox(tqparentWidget);
+function Page2 (parentWidget) {
+ box=new QVBox(parentWidget);
this.button1=new QPushButton(box);
this.button1.text="P2 Button 1";
this.button1.show();
@@ -44,8 +44,8 @@ Page2.fullName="Test1/Page2";
Third configuration page
****************************************************************/
-function Page3 (tqparentWidget) {
- box=new QVBox(tqparentWidget);
+function Page3 (parentWidget) {
+ box=new QVBox(parentWidget);
this.button1=new QPushButton(box);
this.button1.text="P3 Button 1";
this.button1.show();
@@ -62,11 +62,11 @@ Page3.fullName="Test1/Page3";
First toolview
****************************************************************/
-function MyToolView1 (mainwindow,tqparentwidget) {
- tqparentwidget.caption="This is my first JS Toolview";
- tqparentwidget.icon=StdIcons.BarIcon("yes");
+function MyToolView1 (mainwindow,parentwidget) {
+ parentwidget.caption="This is my first JS Toolview";
+ parentwidget.icon=StdIcons.BarIcon("yes");
- this.lv = new KListView( tqparentwidget );
+ this.lv = new KListView( parentwidget );
this.lv.addColumn('Pix');
this.lv.addColumn('One');
@@ -99,11 +99,11 @@ MyToolView1.name="myfirstjstoolview"
Second toolview
****************************************************************/
-function MyToolView2 (mainwindow,tqparentwidget) {
- tqparentwidget.caption="This is my second JS Toolview";
- tqparentwidget.icon=StdIcons.BarIcon("no");
+function MyToolView2 (mainwindow,parentwidget) {
+ parentwidget.caption="This is my second JS Toolview";
+ parentwidget.icon=StdIcons.BarIcon("no");
- this.lb=new QListBox(tqparentwidget);
+ this.lb=new QListBox(parentwidget);
this.mainwindow=mainwindow;
this.cleanup=function() {
alert("Cleanup MyToolView2");
@@ -121,11 +121,11 @@ MyToolView2.name="mysecondjstoolview"
function newWindowCallBack(mainwindow) {
alert("New Window has been created");
/*
- anotherToolView = function (mainwindow,tqparentwidget) {
- tqparentwidget.caption="This is my third JS Toolview";
- tqparentwidget.icon=StdIcons.BarIcon("kate");
+ anotherToolView = function (mainwindow,parentwidget) {
+ parentwidget.caption="This is my third JS Toolview";
+ parentwidget.icon=StdIcons.BarIcon("kate");
- this.lb=new QListBox(tqparentwidget);
+ this.lb=new QListBox(parentwidget);
this.mainwindow=mainwindow;
this.cleanup=function() {
alert("Cleanup MyToolView3");