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
v3.5.13-sru
tpearson 13 years ago
parent 89761f7206
commit cee3e820d8

@ -80,7 +80,7 @@ KABC::AddresseeList GMXXXPort::importContacts( const TQString& ) const
TQFile file( fileName ); TQFile file( fileName );
if ( !file.open( IO_ReadOnly ) ) { if ( !file.open( IO_ReadOnly ) ) {
TQString msg = i18n( "<qt>Unable to open <b>%1</b> for reading.</qt>" ); TQString msg = i18n( "<qt>Unable to open <b>%1</b> for reading.</qt>" );
KMessageBox::error( tqparentWidget(), msg.tqarg( fileName ) ); KMessageBox::error( parentWidget(), msg.tqarg( fileName ) );
return addrList; return addrList;
} }
@ -91,7 +91,7 @@ KABC::AddresseeList GMXXXPort::importContacts( const TQString& ) const
line = gmxStream.readLine(); line = gmxStream.readLine();
line2 = gmxStream.readLine(); line2 = gmxStream.readLine();
if (!line.startsWith("AB_ADDRESSES:") || !line2.startsWith("Address_id")) { if (!line.startsWith("AB_ADDRESSES:") || !line2.startsWith("Address_id")) {
KMessageBox::error( tqparentWidget(), i18n("%1 is not a GMX address book file.").tqarg(fileName) ); KMessageBox::error( parentWidget(), i18n("%1 is not a GMX address book file.").tqarg(fileName) );
return addrList; return addrList;
} }
@ -214,7 +214,7 @@ bool GMXXXPort::exportContacts( const KABC::AddresseeList &list, const TQString&
KTempFile tmpFile; KTempFile tmpFile;
if ( tmpFile.status() != 0 ) { if ( tmpFile.status() != 0 ) {
TQString txt = i18n( "<qt>Unable to open file <b>%1</b>.%2.</qt>" ); TQString txt = i18n( "<qt>Unable to open file <b>%1</b>.%2.</qt>" );
KMessageBox::error( tqparentWidget(), txt.tqarg( url.url() ) KMessageBox::error( parentWidget(), txt.tqarg( url.url() )
.tqarg( strerror( tmpFile.status() ) ) ); .tqarg( strerror( tmpFile.status() ) ) );
return false; return false;
} }
@ -222,14 +222,14 @@ bool GMXXXPort::exportContacts( const KABC::AddresseeList &list, const TQString&
doExport( tmpFile.file(), list ); doExport( tmpFile.file(), list );
tmpFile.close(); tmpFile.close();
return KIO::NetAccess::upload( tmpFile.name(), url, tqparentWidget() ); return KIO::NetAccess::upload( tmpFile.name(), url, parentWidget() );
} else { } else {
TQString filename = url.path(); TQString filename = url.path();
TQFile file( filename ); TQFile file( filename );
if ( !file.open( IO_WriteOnly ) ) { if ( !file.open( IO_WriteOnly ) ) {
TQString txt = i18n( "<qt>Unable to open file <b>%1</b>.</qt>" ); TQString txt = i18n( "<qt>Unable to open file <b>%1</b>.</qt>" );
KMessageBox::error( tqparentWidget(), txt.tqarg( filename ) ); KMessageBox::error( parentWidget(), txt.tqarg( filename ) );
return false; return false;
} }

@ -133,7 +133,7 @@ void KatePluginSymbolViewerView::slotInsertSymbol()
//connect(symbols, TQT_SIGNAL(resizeEvent(TQResizeEvent *)), this, TQT_SLOT(slotViewChanged(TQResizeEvent *))); //connect(symbols, TQT_SIGNAL(resizeEvent(TQResizeEvent *)), this, TQT_SLOT(slotViewChanged(TQResizeEvent *)));
m_Active = true; m_Active = true;
//symbols->addColumn(i18n("Symbols"), symbols->tqparentWidget()->width()); //symbols->addColumn(i18n("Symbols"), symbols->parentWidget()->width());
symbols->addColumn(i18n("Symbols")); symbols->addColumn(i18n("Symbols"));
symbols->addColumn(i18n("Position")); symbols->addColumn(i18n("Position"));
symbols->setColumnWidthMode(1, TQListView::Manual); symbols->setColumnWidthMode(1, TQListView::Manual);
@ -192,7 +192,7 @@ void KatePluginSymbolViewerView::slotDocChanged()
void KatePluginSymbolViewerView::slotViewChanged(TQResizeEvent *) void KatePluginSymbolViewerView::slotViewChanged(TQResizeEvent *)
{ {
kdDebug(13000)<<"View changed !!!!"<<endl; kdDebug(13000)<<"View changed !!!!"<<endl;
symbols->setColumnWidth(0, symbols->tqparentWidget()->width()); symbols->setColumnWidth(0, symbols->parentWidget()->width());
} }
void KatePluginSymbolViewerView::slotShowContextMenu(TQListViewItem *, const TQPoint &p, int) void KatePluginSymbolViewerView::slotShowContextMenu(TQListViewItem *, const TQPoint &p, int)
@ -307,8 +307,8 @@ void KatePluginSymbolViewer::applyConfig( KatePluginSymbolViewerConfigPage* p )
// BEGIN KatePluginSymbolViewerConfigPage // BEGIN KatePluginSymbolViewerConfigPage
KatePluginSymbolViewerConfigPage::KatePluginSymbolViewerConfigPage( KatePluginSymbolViewerConfigPage::KatePluginSymbolViewerConfigPage(
TQObject* /*tqparent*/ /*= 0L*/, TQWidget *tqparentWidget /*= 0L*/) TQObject* /*tqparent*/ /*= 0L*/, TQWidget *parentWidget /*= 0L*/)
: Kate::PluginConfigPage( tqparentWidget ) : Kate::PluginConfigPage( parentWidget )
{ {
TQVBoxLayout* top = new TQVBoxLayout(this, 0, TQVBoxLayout* top = new TQVBoxLayout(this, 0,
KDialogBase::spacingHint()); KDialogBase::spacingHint());

@ -94,7 +94,7 @@ class KatePluginSymbolViewerConfigPage : public Kate::PluginConfigPage
friend class KatePluginSymbolViewer; friend class KatePluginSymbolViewer;
public: public:
KatePluginSymbolViewerConfigPage (TQObject* tqparent = 0L, TQWidget *tqparentWidget = 0L); KatePluginSymbolViewerConfigPage (TQObject* tqparent = 0L, TQWidget *parentWidget = 0L);
~KatePluginSymbolViewerConfigPage (); ~KatePluginSymbolViewerConfigPage ();
/** /**

@ -504,7 +504,7 @@ void KateFileTemplates::slotOpenTemplate( const KURL &url )
} }
TQWidget *KateFileTemplates::tqparentWindow() TQWidget *KateFileTemplates::parentWindow()
{ {
return dynamic_cast<TQWidget*>(application()->activeMainWindow()); return dynamic_cast<TQWidget*>(application()->activeMainWindow());
} }
@ -523,7 +523,7 @@ TQWidget *KateFileTemplates::tqparentWindow()
// and edit the file as she wants to... // and edit the file as she wants to...
void KateFileTemplates::slotCreateTemplate() void KateFileTemplates::slotCreateTemplate()
{ {
KateTemplateWizard w( tqparentWindow(), this ); KateTemplateWizard w( parentWindow(), this );
w.exec(); w.exec();
updateTemplateDirs(); updateTemplateDirs();
@ -536,7 +536,7 @@ void KateFileTemplates::slotCreateTemplate()
// * Set the URL to a writable one if required // * Set the URL to a writable one if required
void KateFileTemplates::slotEditTemplate() void KateFileTemplates::slotEditTemplate()
{ {
KDialogBase dlg( tqparentWindow(), "templatemanager", false, i18n("Manage File Templates"), KDialogBase::Close); KDialogBase dlg( parentWindow(), "templatemanager", false, i18n("Manage File Templates"), KDialogBase::Close);
dlg.setMainWidget( new KateTemplateManager( this, &dlg ) ); dlg.setMainWidget( new KateTemplateManager( this, &dlg ) );
dlg.exec(); dlg.exec();
} }

@ -102,7 +102,7 @@ class KateFileTemplates : public Kate::Plugin, public Kate::PluginViewInterface
/** /**
* @return a a pointer to the active main window * @return a a pointer to the active main window
*/ */
TQWidget * tqparentWindow(); TQWidget * parentWindow();
public slots: public slots:
/** /**

@ -367,8 +367,8 @@ WaitDlg::~WaitDlg()
//BEGIN InsertCommandConfigPage //BEGIN InsertCommandConfigPage
// This is the config page for this plugin. // This is the config page for this plugin.
InsertCommandConfigPage::InsertCommandConfigPage(TQObject* /*tqparent*/, InsertCommandConfigPage::InsertCommandConfigPage(TQObject* /*tqparent*/,
TQWidget *tqparentWidget) TQWidget *parentWidget)
: Kate::PluginConfigPage( tqparentWidget ) : Kate::PluginConfigPage( parentWidget )
{ {
TQVBoxLayout* lo = new TQVBoxLayout( this ); TQVBoxLayout* lo = new TQVBoxLayout( this );
lo->setSpacing(KDialogBase::spacingHint()); lo->setSpacing(KDialogBase::spacingHint());

@ -146,7 +146,7 @@ class InsertCommandConfigPage : public Kate::PluginConfigPage
friend class PluginKateInsertCommand; friend class PluginKateInsertCommand;
public: public:
InsertCommandConfigPage(TQObject* tqparent = 0L, TQWidget *tqparentWidget = 0L); InsertCommandConfigPage(TQObject* tqparent = 0L, TQWidget *parentWidget = 0L);
~InsertCommandConfigPage() {} ~InsertCommandConfigPage() {}
/** Reimplemented from Kate::PluginConfigPage /** Reimplemented from Kate::PluginConfigPage

@ -371,8 +371,8 @@ void PluginKateKJSWrapper::applyConfig( KateKJSWrapperConfigPage *p )
} }
KateKJSWrapperConfigPage::KateKJSWrapperConfigPage(KJS::Object pageConstructor,PluginKateKJSWrapper* tqparent, KateKJSWrapperConfigPage::KateKJSWrapperConfigPage(KJS::Object pageConstructor,PluginKateKJSWrapper* tqparent,
TQWidget *tqparentWidget) TQWidget *parentWidget)
: Kate::PluginConfigPage( tqparentWidget ),m_plugin(tqparent) : Kate::PluginConfigPage( parentWidget ),m_plugin(tqparent)
{ {
TQVBoxLayout *l=new TQVBoxLayout(this); TQVBoxLayout *l=new TQVBoxLayout(this);
l->setAutoAdd(true); l->setAutoAdd(true);

@ -122,7 +122,7 @@ class KateKJSWrapperConfigPage : public Kate::PluginConfigPage
friend class PluginKateKJSWrapper; friend class PluginKateKJSWrapper;
public: public:
KateKJSWrapperConfigPage(KJS::Object pageConstructor,PluginKateKJSWrapper* tqparent = 0L, TQWidget *tqparentWidget = 0L); KateKJSWrapperConfigPage(KJS::Object pageConstructor,PluginKateKJSWrapper* tqparent = 0L, TQWidget *parentWidget = 0L);
~KateKJSWrapperConfigPage() {}; ~KateKJSWrapperConfigPage() {};
/** Reimplemented from Kate::PluginConfigPage /** Reimplemented from Kate::PluginConfigPage

@ -1,7 +1,7 @@
/**************************************************************** /****************************************************************
First configuration page First configuration page
****************************************************************/ ****************************************************************/
function Page1 (tqparentWidget) { function Page1 (parentWidget) {
this.defaults=function() { this.defaults=function() {
alert("Defaults has been called"); alert("Defaults has been called");
} }
@ -11,7 +11,7 @@ function Page1 (tqparentWidget) {
this.reset=function() { this.reset=function() {
alert("Reset defaults has been called"); alert("Reset defaults has been called");
} }
box=new QVBox(tqparentWidget); box=new QVBox(parentWidget);
this.button1=new QPushButton(box); this.button1=new QPushButton(box);
this.button1.text="P1 Button 1"; this.button1.text="P1 Button 1";
this.button1.show(); this.button1.show();
@ -27,8 +27,8 @@ Page1.fullName="Test1/Page1";
Second configuration page Second configuration page
****************************************************************/ ****************************************************************/
function Page2 (tqparentWidget) { function Page2 (parentWidget) {
box=new QVBox(tqparentWidget); box=new QVBox(parentWidget);
this.button1=new QPushButton(box); this.button1=new QPushButton(box);
this.button1.text="P2 Button 1"; this.button1.text="P2 Button 1";
this.button1.show(); this.button1.show();
@ -44,8 +44,8 @@ Page2.fullName="Test1/Page2";
Third configuration page Third configuration page
****************************************************************/ ****************************************************************/
function Page3 (tqparentWidget) { function Page3 (parentWidget) {
box=new QVBox(tqparentWidget); box=new QVBox(parentWidget);
this.button1=new QPushButton(box); this.button1=new QPushButton(box);
this.button1.text="P3 Button 1"; this.button1.text="P3 Button 1";
this.button1.show(); this.button1.show();
@ -62,11 +62,11 @@ Page3.fullName="Test1/Page3";
First toolview First toolview
****************************************************************/ ****************************************************************/
function MyToolView1 (mainwindow,tqparentwidget) { function MyToolView1 (mainwindow,parentwidget) {
tqparentwidget.caption="This is my first JS Toolview"; parentwidget.caption="This is my first JS Toolview";
tqparentwidget.icon=StdIcons.BarIcon("yes"); parentwidget.icon=StdIcons.BarIcon("yes");
this.lv = new KListView( tqparentwidget ); this.lv = new KListView( parentwidget );
this.lv.addColumn('Pix'); this.lv.addColumn('Pix');
this.lv.addColumn('One'); this.lv.addColumn('One');
@ -99,11 +99,11 @@ MyToolView1.name="myfirstjstoolview"
Second toolview Second toolview
****************************************************************/ ****************************************************************/
function MyToolView2 (mainwindow,tqparentwidget) { function MyToolView2 (mainwindow,parentwidget) {
tqparentwidget.caption="This is my second JS Toolview"; parentwidget.caption="This is my second JS Toolview";
tqparentwidget.icon=StdIcons.BarIcon("no"); parentwidget.icon=StdIcons.BarIcon("no");
this.lb=new QListBox(tqparentwidget); this.lb=new QListBox(parentwidget);
this.mainwindow=mainwindow; this.mainwindow=mainwindow;
this.cleanup=function() { this.cleanup=function() {
alert("Cleanup MyToolView2"); alert("Cleanup MyToolView2");
@ -121,11 +121,11 @@ MyToolView2.name="mysecondjstoolview"
function newWindowCallBack(mainwindow) { function newWindowCallBack(mainwindow) {
alert("New Window has been created"); alert("New Window has been created");
/* /*
anotherToolView = function (mainwindow,tqparentwidget) { anotherToolView = function (mainwindow,parentwidget) {
tqparentwidget.caption="This is my third JS Toolview"; parentwidget.caption="This is my third JS Toolview";
tqparentwidget.icon=StdIcons.BarIcon("kate"); parentwidget.icon=StdIcons.BarIcon("kate");
this.lb=new QListBox(tqparentwidget); this.lb=new QListBox(parentwidget);
this.mainwindow=mainwindow; this.mainwindow=mainwindow;
this.cleanup=function() { this.cleanup=function() {
alert("Cleanup MyToolView3"); alert("Cleanup MyToolView3");

@ -390,7 +390,7 @@ KPyBrowser::KPBToolTip::maybeTip (const TQPoint & p)
TQString str; TQString str;
TQRect r; TQRect r;
((KPyBrowser *) tqparentWidget ())->tip (p, r, str); ((KPyBrowser *) parentWidget ())->tip (p, r, str);
if (!str.isEmpty () && r.isValid ()) if (!str.isEmpty () && r.isValid ())
tip (r, str); tip (r, str);

@ -210,5 +210,5 @@
<functions> <functions>
<function returnType="TQListViewItem *">insertItem( const TQString&amp; name, bool bRename )</function> <function returnType="TQListViewItem *">insertItem( const TQString&amp; name, bool bRename )</function>
</functions> </functions>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
</UI> </UI>

@ -475,8 +475,8 @@ void KateTabBarExtension::slotViewChanged ()
// BEGIN KateTabBarExtensionConfigPage // BEGIN KateTabBarExtensionConfigPage
KateTabBarExtensionConfigPage::KateTabBarExtensionConfigPage( KateTabBarExtensionConfigPage::KateTabBarExtensionConfigPage(
TQObject* /*tqparent*/ /*= 0L*/, TQWidget *tqparentWidget /*= 0L*/) TQObject* /*tqparent*/ /*= 0L*/, TQWidget *parentWidget /*= 0L*/)
: Kate::PluginConfigPage( tqparentWidget ) : Kate::PluginConfigPage( parentWidget )
{ {
TQVBoxLayout* top = new TQVBoxLayout(this, 0, TQVBoxLayout* top = new TQVBoxLayout(this, 0,
KDialogBase::spacingHint()); KDialogBase::spacingHint());

@ -268,7 +268,7 @@ class KateTabBarExtensionConfigPage : public Kate::PluginConfigPage
friend class KatePluginTabBarExtension; friend class KatePluginTabBarExtension;
public: public:
KateTabBarExtensionConfigPage (TQObject* tqparent = 0L, TQWidget *tqparentWidget = 0L); KateTabBarExtensionConfigPage (TQObject* tqparent = 0L, TQWidget *parentWidget = 0L);
~KateTabBarExtensionConfigPage (); ~KateTabBarExtensionConfigPage ();
/** /**

@ -8326,7 +8326,7 @@
<attribute name="xreflabel" type="#IMPLIED" value="CDATA" default=""/> <attribute name="xreflabel" type="#IMPLIED" value="CDATA" default=""/>
<attribute name="status" type="#IMPLIED" value="CDATA" default=""/> <attribute name="status" type="#IMPLIED" value="CDATA" default=""/>
<attribute name="lang" type="#IMPLIED" enumeration="yes" value="af az bg bo br bs ca cs cy da de el en en-GB en-US eo es et eu fa fi fo fr ga gl he hi hr hu id is it ja kn ko lt lv mi mk mt nl no nb nn nso oc pl pt pt-BR pt-PT ro ru si sk sl sr st sv ta te tg th tr uk vi x-wa xh zh zh-CN zh-TW zu" default=""/> <attribute name="lang" type="#IMPLIED" enumeration="yes" value="af az bg bo br bs ca cs cy da de el en en-GB en-US eo es et eu fa fi fo fr ga gl he hi hr hu id is it ja kn ko lt lv mi mk mt nl no nb nn nso oc pl pt pt-BR pt-PT ro ru si sk sl sr st sv ta te tg th tr uk vi x-wa xh zh zh-CN zh-TW zu" default=""/>
<attribute name="tqparentbook" type="#IMPLIED" value="IDREF" default=""/> <attribute name="parentbook" type="#IMPLIED" value="IDREF" default=""/>
<attribute name="class" type="#IMPLIED" enumeration="yes" value="journalarticle productsheet whitepaper techreport specification faq" default=""/> <attribute name="class" type="#IMPLIED" enumeration="yes" value="journalarticle productsheet whitepaper techreport specification faq" default=""/>
<attribute name="id" type="#IMPLIED" value="ID" default=""/> <attribute name="id" type="#IMPLIED" value="ID" default=""/>
<attribute name="role" type="#IMPLIED" value="CDATA" default=""/> <attribute name="role" type="#IMPLIED" value="CDATA" default=""/>

@ -282,9 +282,9 @@ void PluginKateXMLTools::keyEvent( int, int, const TQString &/*s*/ )
else if( leftCh == "<" ) else if( leftCh == "<" )
{ {
kdDebug() << "*outside tag -> get elements" << endl; kdDebug() << "*outside tag -> get elements" << endl;
TQString tqparentElement = getParentElement( *kv, true ); TQString parentElement = getParentElement( *kv, true );
kdDebug() << "tqparent: " << tqparentElement << endl; kdDebug() << "tqparent: " << parentElement << endl;
allowed = m_docDtds[docNumber]->allowedElements(tqparentElement ); allowed = m_docDtds[docNumber]->allowedElements(parentElement );
m_mode = elements; m_mode = elements;
} }
// TODO: optionally close tqparent tag if not left=="/>" // TODO: optionally close tqparent tag if not left=="/>"
@ -555,11 +555,11 @@ void PluginKateXMLTools::slotInsertElement()
} }
PseudoDTD *dtd = m_docDtds[kv->document()->documentNumber()]; PseudoDTD *dtd = m_docDtds[kv->document()->documentNumber()];
TQString tqparentElement = getParentElement( *kv, false ); TQString parentElement = getParentElement( *kv, false );
TQStringList allowed; TQStringList allowed;
if( dtd ) if( dtd )
allowed = dtd->allowedElements(tqparentElement ); allowed = dtd->allowedElements(parentElement );
InsertElement *dialog = new InsertElement( InsertElement *dialog = new InsertElement(
( TQWidget *)application()->activeMainWindow()->viewManager()->activeView(), "insertXml" ); ( TQWidget *)application()->activeMainWindow()->viewManager()->activeView(), "insertXml" );
@ -616,11 +616,11 @@ void PluginKateXMLTools::slotCloseElement()
kdDebug() << "Warning: no Kate::View" << endl; kdDebug() << "Warning: no Kate::View" << endl;
return; return;
} }
TQString tqparentElement = getParentElement( *kv, false ); TQString parentElement = getParentElement( *kv, false );
//kdDebug() << "tqparentElement: '" << tqparentElement << "'" << endl; //kdDebug() << "parentElement: '" << parentElement << "'" << endl;
TQString closeTag = "</" + tqparentElement + ">"; TQString closeTag = "</" + parentElement + ">";
if( ! tqparentElement.isEmpty() ) if( ! parentElement.isEmpty() )
kv->insertText( closeTag ); kv->insertText( closeTag );
} }

@ -196,7 +196,7 @@ bool PseudoDTD::parseElements( TQDomDocument *doc, TQProgressDialog *progress )
* a list of allowed elements, but it doesn't care about order or if only a certain * a list of allowed elements, but it doesn't care about order or if only a certain
* number of occurences is allowed. * number of occurences is allowed.
*/ */
TQStringList PseudoDTD::allowedElements( TQString tqparentElement ) TQStringList PseudoDTD::allowedElements( TQString parentElement )
{ {
if( m_sgmlSupport ) if( m_sgmlSupport )
{ {
@ -204,12 +204,12 @@ TQStringList PseudoDTD::allowedElements( TQString tqparentElement )
TQMap<TQString,TQStringList>::Iterator it; TQMap<TQString,TQStringList>::Iterator it;
for( it = m_elementsList.begin(); it != m_elementsList.end(); ++it ) for( it = m_elementsList.begin(); it != m_elementsList.end(); ++it )
{ {
if( it.key().lower() == tqparentElement.lower() ) if( it.key().lower() == parentElement.lower() )
return it.data(); return it.data();
} }
} }
else if( m_elementsList.tqcontains(tqparentElement) ) else if( m_elementsList.tqcontains(parentElement) )
return m_elementsList[tqparentElement]; return m_elementsList[parentElement];
return TQStringList(); return TQStringList();
} }

@ -46,11 +46,11 @@ class PseudoDTD
void analyzeDTD( TQString &metaDtdUrl, TQString &metaDtd ); void analyzeDTD( TQString &metaDtdUrl, TQString &metaDtd );
TQStringList allowedElements( TQString tqparentElement ); TQStringList allowedElements( TQString parentElement );
TQStringList allowedAttributes( TQString tqparentElement ); TQStringList allowedAttributes( TQString parentElement );
TQStringList attributeValues( TQString element, TQString attribute ); TQStringList attributeValues( TQString element, TQString attribute );
TQStringList entities( TQString start ); TQStringList entities( TQString start );
TQStringList requiredAttributes( const TQString &tqparentElement ) const; TQStringList requiredAttributes( const TQString &parentElement ) const;
protected: protected:

@ -475,7 +475,7 @@
</widget> </widget>
</grid> </grid>
</widget> </widget>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>kcolorbutton.h</includehint> <includehint>kcolorbutton.h</includehint>
<includehint>kled.h</includehint> <includehint>kled.h</includehint>

@ -660,7 +660,7 @@ int Parser::errmsg()
break; break;
case 2: KMessageBox::error(0, i18n("Parser error at position %1:\n" case 2: KMessageBox::error(0, i18n("Parser error at position %1:\n"
"Missing tqparenthesis").tqarg(TQString::number(errpos)), i18n("Math Expression Evaluator")); "Missing parenthesis").tqarg(TQString::number(errpos)), i18n("Math Expression Evaluator"));
break; break;
case 3: KMessageBox::error(0, i18n("Parser error at position %1:\n" case 3: KMessageBox::error(0, i18n("Parser error at position %1:\n"

@ -185,7 +185,7 @@ void JuKInterface::dropEvent(TQDropEvent* event)
kdDebug(90200) << "Couldn't send drop to juk" << endl; kdDebug(90200) << "Couldn't send drop to juk" << endl;
} }
// Aptqparently we should auto-play? // Apparently we should auto-play?
TQByteArray strData; TQByteArray strData;
TQDataStream strArg(strData, IO_WriteOnly); TQDataStream strArg(strData, IO_WriteOnly);
strArg << *fileList.begin(); strArg << *fileList.begin();

@ -36,10 +36,10 @@ void MCSlider::setBackground()
{ {
unsetPalette(); unsetPalette();
if (tqparentWidget()->paletteBackgroundPixmap()) if (parentWidget()->paletteBackgroundPixmap())
{ {
TQPixmap pm(width(), height()); TQPixmap pm(width(), height());
pm.fill(tqparentWidget(), pos()); pm.fill(parentWidget(), pos());
setPaletteBackgroundPixmap(pm); setPaletteBackgroundPixmap(pm);
} }
} }

@ -14,9 +14,9 @@
<height>245</height> <height>245</height>
</rect> </rect>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<property name="toolTip" stdset="0"> <property name="toolTip" stdset="0">
<string></string> <string></string>
@ -170,9 +170,9 @@
<property name="title"> <property name="title">
<string>Preview</string> <string>Preview</string>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<property name="whatsThis" stdset="0"> <property name="whatsThis" stdset="0">
<string>Shows you how the selected theme will look</string> <string>Shows you how the selected theme will look</string>
@ -365,7 +365,7 @@
<Q_SIGNALS> <Q_SIGNALS>
<signal>toggled(bool)</signal> <signal>toggled(bool)</signal>
</Q_SIGNALS> </Q_SIGNALS>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>klistbox.h</includehint> <includehint>klistbox.h</includehint>
<includehint>knuminput.h</includehint> <includehint>knuminput.h</includehint>

@ -60,7 +60,7 @@
# Please set your stock symbols and the ticker you wish to retrieve them from # Please set your stock symbols and the ticker you wish to retrieve them from
# as follows: # as follows:
# Locate the Variable that is named 'my @tickers' # Locate the Variable that is named 'my @tickers'
# within the tqparenthesis put as the FIRST values you ticker, for example yahoo # within the parenthesis put as the FIRST values you ticker, for example yahoo
# or yahoo_europe or any of the others mentioned above # or yahoo_europe or any of the others mentioned above
# any subsequent value seperated by a whitespace is a ticker symbol # any subsequent value seperated by a whitespace is a ticker symbol
# such as MSFT or IBM or LNUX # such as MSFT or IBM or LNUX
@ -74,7 +74,7 @@ use POSIX qw(strftime);
# encouraged, that you only use this when you have 1 stock symbol and not more. # encouraged, that you only use this when you have 1 stock symbol and not more.
my $verbose = 0; my $verbose = 0;
#Make sure you set the first value within the tqparenthesis to match the ticker #Make sure you set the first value within the parenthesis to match the ticker
#you wish to retrieve data from, such as yahoo or yahoo_europe. Each following #you wish to retrieve data from, such as yahoo or yahoo_europe. Each following
#entry, seperated by a whitespace, represnts a stock symbol to the script #entry, seperated by a whitespace, represnts a stock symbol to the script
my @tickers = qw(yahoo_europe IBM MSFT LNUX); my @tickers = qw(yahoo_europe IBM MSFT LNUX);

@ -166,7 +166,7 @@
<slot>accept()</slot> <slot>accept()</slot>
</connection> </connection>
</connections> </connections>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>klineedit.h</includehint> <includehint>klineedit.h</includehint>
<includehint>ktextedit.h</includehint> <includehint>ktextedit.h</includehint>

@ -124,14 +124,14 @@ void DOMTreeView::setHtmlPart(KHTMLPart *_part)
// nothing here yet // nothing here yet
} }
tqparentWidget()->setCaption( part ? i18n( "DOM Tree for %1" ).tqarg(part->url().prettyURL()) : i18n("DOM Tree") ); parentWidget()->setCaption( part ? i18n( "DOM Tree for %1" ).tqarg(part->url().prettyURL()) : i18n("DOM Tree") );
TQTimer::singleShot(0, this, TQT_SLOT(slotSetHtmlPartDelayed())); TQTimer::singleShot(0, this, TQT_SLOT(slotSetHtmlPartDelayed()));
} }
DOMTreeWindow *DOMTreeView::mainWindow() const DOMTreeWindow *DOMTreeView::mainWindow() const
{ {
return static_cast<DOMTreeWindow *>(tqparentWidget()); return static_cast<DOMTreeWindow *>(parentWidget());
} }
bool DOMTreeView::eventFilter(TQObject *o, TQEvent *e) bool DOMTreeView::eventFilter(TQObject *o, TQEvent *e)
@ -214,7 +214,7 @@ void DOMTreeView::slotShowTree(const DOM::Node &pNode)
void DOMTreeView::showRecursive(const DOM::Node &pNode, const DOM::Node &node, uint depth) void DOMTreeView::showRecursive(const DOM::Node &pNode, const DOM::Node &node, uint depth)
{ {
DOMListViewItem *cur_item; DOMListViewItem *cur_item;
DOMListViewItem *tqparent_item = m_itemdict[pNode.handle()]; DOMListViewItem *parent_item = m_itemdict[pNode.handle()];
if (depth > m_maxDepth) { if (depth > m_maxDepth) {
m_maxDepth = depth; m_maxDepth = depth;
@ -224,7 +224,7 @@ void DOMTreeView::showRecursive(const DOM::Node &pNode, const DOM::Node &node, u
cur_item = new DOMListViewItem(node, m_listView); cur_item = new DOMListViewItem(node, m_listView);
m_document = pNode.ownerDocument(); m_document = pNode.ownerDocument();
} else { } else {
cur_item = new DOMListViewItem(node, tqparent_item); cur_item = new DOMListViewItem(node, parent_item);
} }
//kdDebug(90180) << node.nodeName().string() << " [" << depth << "]" << endl; //kdDebug(90180) << node.nodeName().string() << " [" << depth << "]" << endl;
@ -252,7 +252,7 @@ void DOMTreeView::showRecursive(const DOM::Node &pNode, const DOM::Node &node, u
cur_item = new DOMListViewItem(node, m_listView, cur_item); cur_item = new DOMListViewItem(node, m_listView, cur_item);
m_document = pNode.ownerDocument(); m_document = pNode.ownerDocument();
} else { } else {
cur_item = new DOMListViewItem(node, tqparent_item, cur_item); cur_item = new DOMListViewItem(node, parent_item, cur_item);
} }
//kdDebug(90180) << "</" << node.nodeName().string() << ">" << endl; //kdDebug(90180) << "</" << node.nodeName().string() << ">" << endl;
addElement(element, cur_item, true); addElement(element, cur_item, true);

@ -509,7 +509,7 @@
<tabstop>m_highlightHTMLCheckBox</tabstop> <tabstop>m_highlightHTMLCheckBox</tabstop>
<tabstop>nodeAttributes</tabstop> <tabstop>nodeAttributes</tabstop>
</tabstops> </tabstops>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>klineedit.h</includehint> <includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint> <includehint>kpushbutton.h</includehint>

@ -192,7 +192,7 @@
<slot>accept()</slot> <slot>accept()</slot>
</connection> </connection>
</connections> </connections>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>klineedit.h</includehint> <includehint>klineedit.h</includehint>
<includehint>kcombobox.h</includehint> <includehint>kcombobox.h</includehint>

@ -110,7 +110,7 @@
<Q_SLOTS> <Q_SLOTS>
<slot specifier="non virtual">addMessage( const TQString &amp; msg )</slot> <slot specifier="non virtual">addMessage( const TQString &amp; msg )</slot>
</Q_SLOTS> </Q_SLOTS>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>ktextedit.h</includehint> <includehint>ktextedit.h</includehint>
</includehints> </includehints>

@ -142,7 +142,7 @@
<slot>accept()</slot> <slot>accept()</slot>
</connection> </connection>
</connections> </connections>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>ktextedit.h</includehint> <includehint>ktextedit.h</includehint>
</includehints> </includehints>

@ -93,7 +93,7 @@ KAboutData* FSViewPart::createAboutData()
return aboutData; return aboutData;
} }
FSViewPart::FSViewPart(TQWidget *tqparentWidget, const char *widgetName, FSViewPart::FSViewPart(TQWidget *parentWidget, const char *widgetName,
TQObject *tqparent, const char *name, TQObject *tqparent, const char *name,
const TQStringList& /* args */) const TQStringList& /* args */)
: KParts::ReadOnlyPart(tqparent, name) : KParts::ReadOnlyPart(tqparent, name)
@ -101,7 +101,7 @@ FSViewPart::FSViewPart(TQWidget *tqparentWidget, const char *widgetName,
// we need an instance // we need an instance
setInstance( FSViewPartFactory::instance() ); setInstance( FSViewPartFactory::instance() );
_view = new FSView(new Inode(), tqparentWidget, widgetName); _view = new FSView(new Inode(), parentWidget, widgetName);
TQWhatsThis::add(_view, i18n("<p>This is the FSView plugin, a graphical " TQWhatsThis::add(_view, i18n("<p>This is the FSView plugin, a graphical "
"browsing mode showing filesystem utilization " "browsing mode showing filesystem utilization "
"by using a tree map visualization.</p>" "by using a tree map visualization.</p>"

@ -86,7 +86,7 @@ class FSViewPart : public KParts::ReadOnlyPart
TQ_OBJECT TQ_OBJECT
TQ_PROPERTY( bool supportsUndo READ supportsUndo ) TQ_PROPERTY( bool supportsUndo READ supportsUndo )
public: public:
FSViewPart(TQWidget *tqparentWidget, const char *widgetName, FSViewPart(TQWidget *parentWidget, const char *widgetName,
TQObject *tqparent, const char *name, const TQStringList &args); TQObject *tqparent, const char *name, const TQStringList &args);
virtual ~FSViewPart(); virtual ~FSViewPart();

@ -852,7 +852,7 @@ void TreeMapItem::clear()
} }
// tqinvalidates current tqchildren and forces redraw // invalidates current tqchildren and forces redraw
// this is only usefull when tqchildren are created on demand in items() // this is only usefull when tqchildren are created on demand in items()
void TreeMapItem::refresh() void TreeMapItem::refresh()
{ {
@ -1083,10 +1083,10 @@ protected:
void TreeMapTip::maybeTip( const TQPoint& pos ) void TreeMapTip::maybeTip( const TQPoint& pos )
{ {
if ( !tqparentWidget()->inherits( "TreeMapWidget" ) ) if ( !parentWidget()->inherits( "TreeMapWidget" ) )
return; return;
TreeMapWidget* p = (TreeMapWidget*)tqparentWidget(); TreeMapWidget* p = (TreeMapWidget*)parentWidget();
TreeMapItem* i; TreeMapItem* i;
i = p->item(pos.x(), pos.y()); i = p->item(pos.x(), pos.y());
TQPtrList<TQRect>* rList = i ? i->freeRects() : 0; TQPtrList<TQRect>* rList = i ? i->freeRects() : 0;

@ -436,7 +436,7 @@ public:
/** /**
* Selects or unselects an item. * Selects or unselects an item.
* In multiselection mode, the constrain that a selected item * In multiselection mode, the constrain that a selected item
* has no selected tqchildren or tqparents stays true. * has no selected tqchildren or parents stays true.
*/ */
void setSelected(TreeMapItem*, bool selected = true); void setSelected(TreeMapItem*, bool selected = true);
@ -517,7 +517,7 @@ public:
void setVisibleWidth(int width, bool reuseSpace = false); void setVisibleWidth(int width, bool reuseSpace = false);
/** /**
* If a tqchildren value() is almost the tqparents sum(), * If a tqchildren value() is almost the parents sum(),
* it can happen that the border to be drawn for visibilty of * it can happen that the border to be drawn for visibilty of
* nesting relations takes to much space, and the * nesting relations takes to much space, and the
* tqparent/child size relation can not be mapped to a correct * tqparent/child size relation can not be mapped to a correct

@ -192,6 +192,6 @@
<slot access="private">slotClearMoveCache()</slot> <slot access="private">slotClearMoveCache()</slot>
<slot access="protected">slotClearCopyCache()</slot> <slot access="protected">slotClearCopyCache()</slot>
</Q_SLOTS> </Q_SLOTS>
<tqlayoutdefaults spacing="6" margin="0"/> <layoutdefaults spacing="6" margin="0"/>
<tqlayoutfunctions spacing="KDialog::spacingHint"/> <layoutfunctions spacing="KDialog::spacingHint"/>
</UI> </UI>

@ -127,14 +127,14 @@ RsyncConfigDialog::RsyncConfigDialog(TQWidget* tqparent, const char* name,
tqlayout->addWidget(mLabel); tqlayout->addWidget(mLabel);
// Create an exclusive button group // Create an exclusive button group
TQButtonGroup *tqlayoutg = new TQButtonGroup( 1, Qt::Horizontal, i18n("Synchronization Method")+TQString(":"), mainWidget); TQButtonGroup *layoutg = new TQButtonGroup( 1, Qt::Horizontal, i18n("Synchronization Method")+TQString(":"), mainWidget);
tqlayout->addWidget( tqlayoutg ); tqlayout->addWidget( layoutg );
tqlayoutg->setExclusive( TRUE ); layoutg->setExclusive( TRUE );
// Insert radiobuttons // Insert radiobuttons
rsync_rb1 = new TQRadioButton(i18n("&Utilize rsync + ssh for upload to remote server\nExample: servername:/path/to/remote/folder"), tqlayoutg); rsync_rb1 = new TQRadioButton(i18n("&Utilize rsync + ssh for upload to remote server\nExample: servername:/path/to/remote/folder"), layoutg);
rsync_rb2 = new TQRadioButton(i18n("&Utilize rsync + ssh for download from remote server\nExample: servername:/path/to/remote/folder"), tqlayoutg); rsync_rb2 = new TQRadioButton(i18n("&Utilize rsync + ssh for download from remote server\nExample: servername:/path/to/remote/folder"), layoutg);
rsync_rb3 = new TQRadioButton(i18n("&Utilize unison + ssh for bidirectional synchronization with remote server\nExample: ssh://servername//path/to/remote/folder"), tqlayoutg); rsync_rb3 = new TQRadioButton(i18n("&Utilize unison + ssh for bidirectional synchronization with remote server\nExample: ssh://servername//path/to/remote/folder"), layoutg);
if (syncmode == 1) if (syncmode == 1)
rsync_rb1->setChecked( TRUE ); rsync_rb1->setChecked( TRUE );
@ -143,15 +143,15 @@ RsyncConfigDialog::RsyncConfigDialog(TQWidget* tqparent, const char* name,
else if (syncmode == 3) else if (syncmode == 3)
rsync_rb3->setChecked( TRUE ); rsync_rb3->setChecked( TRUE );
//(void)new TQRadioButton( "R&adiobutton 2", tqlayoutg ); //(void)new TQRadioButton( "R&adiobutton 2", layoutg );
//(void)new TQRadioButton( "Ra&diobutton 3", tqlayoutg ); //(void)new TQRadioButton( "Ra&diobutton 3", layoutg );
// Create an exclusive button group // Create an exclusive button group
TQButtonGroup *tqlayoutm = new TQButtonGroup( 1, Qt::Horizontal, i18n("Remote Folder")+TQString(":"), mainWidget); TQButtonGroup *layoutm = new TQButtonGroup( 1, Qt::Horizontal, i18n("Remote Folder")+TQString(":"), mainWidget);
tqlayout->addWidget( tqlayoutm ); tqlayout->addWidget( layoutm );
tqlayoutg->setExclusive( TRUE ); layoutg->setExclusive( TRUE );
m_rsync_txt = new TQLineEdit(tqlayoutm); m_rsync_txt = new TQLineEdit(layoutm);
if (remotefolder.isEmpty() == false) { if (remotefolder.isEmpty() == false) {
m_rsync_txt->setText(remotefolder); m_rsync_txt->setText(remotefolder);
} }

@ -158,7 +158,7 @@
</widget> </widget>
</vbox> </vbox>
</widget> </widget>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>klistview.h</includehint> <includehint>klistview.h</includehint>
</includehints> </includehints>

@ -12,9 +12,9 @@
<height>151</height> <height>151</height>
</rect> </rect>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<vbox> <vbox>
<property name="name"> <property name="name">
@ -30,7 +30,7 @@
<property name="name"> <property name="name">
<cstring>Layout6</cstring> <cstring>Layout6</cstring>
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -166,9 +166,9 @@
<property name="frameShadow"> <property name="frameShadow">
<enum>Raised</enum> <enum>Raised</enum>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -242,9 +242,9 @@
<property name="frameShadow"> <property name="frameShadow">
<enum>Raised</enum> <enum>Raised</enum>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -336,5 +336,5 @@
<includes> <includes>
<include location="global" impldecl="in declaration">controls.h</include> <include location="global" impldecl="in declaration">controls.h</include>
</includes> </includes>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
</UI> </UI>

@ -12,9 +12,9 @@
<height>151</height> <height>151</height>
</rect> </rect>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<vbox> <vbox>
<property name="name"> <property name="name">
@ -30,7 +30,7 @@
<property name="name"> <property name="name">
<cstring>Layout6</cstring> <cstring>Layout6</cstring>
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -166,9 +166,9 @@
<property name="frameShadow"> <property name="frameShadow">
<enum>Raised</enum> <enum>Raised</enum>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -242,9 +242,9 @@
<property name="frameShadow"> <property name="frameShadow">
<enum>Raised</enum> <enum>Raised</enum>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -336,5 +336,5 @@
<includes> <includes>
<include location="global" impldecl="in declaration">controls.h</include> <include location="global" impldecl="in declaration">controls.h</include>
</includes> </includes>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
</UI> </UI>

@ -18,7 +18,7 @@
</widget> </widget>
</vbox> </vbox>
</widget> </widget>
<tqlayoutdefaults spacing="6" margin="0"/> <layoutdefaults spacing="6" margin="0"/>
<includehints> <includehints>
<includehint>keditlistbox.h</includehint> <includehint>keditlistbox.h</includehint>
<includehint>klineedit.h</includehint> <includehint>klineedit.h</includehint>

@ -119,7 +119,7 @@
</widget> </widget>
<customwidgets> <customwidgets>
</customwidgets> </customwidgets>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>kactivelabel.h</includehint> <includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint> <includehint>kactivelabel.h</includehint>

@ -29,7 +29,7 @@
SigListViewItem::~SigListViewItem() SigListViewItem::~SigListViewItem()
{ {
// remove the element from the tree // remove the element from the tree
element.tqparentNode().removeChild(element); element.parentNode().removeChild(element);
} }
TQString SigListViewItem::text() const TQString SigListViewItem::text() const

@ -112,7 +112,7 @@
<slot>reject()</slot> <slot>reject()</slot>
</connection> </connection>
</connections> </connections>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>ktextedit.h</includehint> <includehint>ktextedit.h</includehint>
</includehints> </includehints>

@ -18,9 +18,9 @@
<property name="acceptDrops"> <property name="acceptDrops">
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<vbox> <vbox>
<property name="name"> <property name="name">
@ -292,9 +292,9 @@
<property name="frameShadow"> <property name="frameShadow">
<enum>Plain</enum> <enum>Plain</enum>
</property> </property>
<property name="tqlayoutMargin" stdset="0"> <property name="layoutMargin" stdset="0">
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<grid> <grid>
<property name="name"> <property name="name">
@ -2216,7 +2216,7 @@
<property name="name"> <property name="name">
<cstring>Layout10</cstring> <cstring>Layout10</cstring>
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -2232,7 +2232,7 @@
<property name="name"> <property name="name">
<cstring>Layout9</cstring> <cstring>Layout9</cstring>
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<vbox> <vbox>
<property name="name"> <property name="name">
@ -2265,7 +2265,7 @@
<property name="name"> <property name="name">
<cstring>Layout8</cstring> <cstring>Layout8</cstring>
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -2407,7 +2407,7 @@
<property name="name"> <property name="name">
<cstring>Layout5</cstring> <cstring>Layout5</cstring>
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<vbox> <vbox>
<property name="name"> <property name="name">
@ -2423,7 +2423,7 @@
<property name="name"> <property name="name">
<cstring>Layout3</cstring> <cstring>Layout3</cstring>
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -2501,7 +2501,7 @@
<property name="name"> <property name="name">
<cstring>Layout4</cstring> <cstring>Layout4</cstring>
</property> </property>
<property name="tqlayoutSpacing" stdset="0"> <property name="layoutSpacing" stdset="0">
</property> </property>
<hbox> <hbox>
<property name="name"> <property name="name">
@ -2636,5 +2636,5 @@
<data format="XPM.GZ" length="646">789c6dd2c10ac2300c00d07bbf2234b7229d1be245fc04c5a3201e4615f430059d0711ff5ddb2e6bb236ec90eed134cb5a19d8ef36602af5ecdbfeeac05dda0798d3abebde87e3faa374d3807fa0d633a52d38d8de6f679fe33fc776e196f53cd010188256a3600a292882096246517815ca99884606e18044a3a40d91824820924265a7923a2e8bcd05f33db1173e002913175f2a6be6d3294871a2d95fa00e8a94ee017b69d339d90df1e77c57ea072ede6758</data> <data format="XPM.GZ" length="646">789c6dd2c10ac2300c00d07bbf2234b7229d1be245fc04c5a3201e4615f430059d0711ff5ddb2e6bb236ec90eed134cb5a19d8ef36602af5ecdbfeeac05dda0798d3abebde87e3faa374d3807fa0d633a52d38d8de6f679fe33fc776e196f53cd010188256a3600a292882096246517815ca99884606e18044a3a40d91824820924265a7923a2e8bcd05f33db1173e002913175f2a6be6d3294871a2d95fa00e8a94ee017b69d339d90df1e77c57ea072ede6758</data>
</image> </image>
</images> </images>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
</UI> </UI>

@ -178,7 +178,7 @@
</widget> </widget>
</vbox> </vbox>
</widget> </widget>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>
<includehint>kurlrequester.h</includehint> <includehint>kurlrequester.h</includehint>
<includehint>klineedit.h</includehint> <includehint>klineedit.h</includehint>

@ -67,7 +67,7 @@ void FileMenu::removeFromList()
void FileMenu::properties() void FileMenu::properties()
{ {
new ObliquePropertiesDialog(mFiles, tqparentWidget()); new ObliquePropertiesDialog(mFiles, parentWidget());
} }
void FileMenu::toggleInSlice(Slice *slice) void FileMenu::toggleInSlice(Slice *slice)

@ -61,8 +61,8 @@ public:
virtual int compare(TQListViewItem * i, int col, bool) const; virtual int compare(TQListViewItem * i, int col, bool) const;
/** /**
* open my tqparents so that I'm visible, if I'm playing or * open my parents so that I'm visible, if I'm playing or
* close my tqparents if I'm not playing, and the user * close my parents if I'm not playing, and the user
* didn't open * didn't open
**/ **/
void autoExpand(); void autoExpand();

@ -191,5 +191,5 @@
<slot access="protected">offsetChanged(int)</slot> <slot access="protected">offsetChanged(int)</slot>
<slot access="protected">rangeChanged(int)</slot> <slot access="protected">rangeChanged(int)</slot>
</Q_SLOTS> </Q_SLOTS>
<tqlayoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
</UI> </UI>

@ -257,14 +257,14 @@ struct SliderBar : public UIObject
struct PopperUpper : public UIObject struct PopperUpper : public UIObject
{ {
int tqmaskAdd; int maskAdd;
PopperUpper(int _am,int _vm,double _x,double _y, PopperUpper(int _am,int _vm,double _x,double _y,
double _width,double _height, int _tqmaskAdd) double _width,double _height, int _maskAdd)
{ {
activeMask = _am; visibleMask = _vm; activeMask = _am; visibleMask = _vm;
x = _x; y = _y; width = _width; height = _height; x = _x; y = _y; width = _width; height = _height;
tqmaskAdd = _tqmaskAdd; maskAdd = _maskAdd;
} }
int go(bool mouseDown,bool mouseClick, bool mouseOver, int go(bool mouseDown,bool mouseClick, bool mouseOver,
@ -282,7 +282,7 @@ struct PopperUpper : public UIObject
0x0200, 0x0200,
x*scale,y*scale,width*scale,height*scale); x*scale,y*scale,width*scale,height*scale);
return mouseOver ? tqmaskAdd : 0; return mouseOver ? maskAdd : 0;
} }
void handleKey(char key, int &action) void handleKey(char key, int &action)
@ -346,7 +346,7 @@ void Interface::setupPalette()
#define OPEN 64 #define OPEN 64
// TODO Lay things out with tqparents and a stack, like QT // TODO Lay things out with parents and a stack, like QT
Interface::Interface() Interface::Interface()
{ {
static const float IconSize=0.2; static const float IconSize=0.2;

@ -170,14 +170,14 @@ struct SliderBar : public UIObject
struct PopperUpper : public UIObject struct PopperUpper : public UIObject
{ {
int tqmaskAdd; int maskAdd;
PopperUpper(int _am,int _vm,double _x,double _y, PopperUpper(int _am,int _vm,double _x,double _y,
double _width,double _height, int _tqmaskAdd) double _width,double _height, int _maskAdd)
{ {
activeMask = _am; visibleMask = _vm; activeMask = _am; visibleMask = _vm;
x = _x; y = _y; width = _width; height = _height; x = _x; y = _y; width = _width; height = _height;
tqmaskAdd = _tqmaskAdd; maskAdd = _maskAdd;
} }
int go(bool mouseDown,bool mouseClick, bool mouseOver, int go(bool mouseDown,bool mouseClick, bool mouseOver,
@ -195,7 +195,7 @@ struct PopperUpper : public UIObject
0x0200, 0x0200,
x*scale,y*scale,width*scale,height*scale); x*scale,y*scale,width*scale,height*scale);
return mouseOver ? tqmaskAdd : 0; return mouseOver ? maskAdd : 0;
} }
void handleKey(char key, int &action) void handleKey(char key, int &action)
@ -259,7 +259,7 @@ void Interface::setupPalette()
#define OPEN 64 #define OPEN 64
// TODO Lay things out with tqparents and a stack, like QT // TODO Lay things out with parents and a stack, like QT
Interface::Interface() Interface::Interface()
{ {
static const float IconSize=0.2; static const float IconSize=0.2;

Loading…
Cancel
Save