diff options
Diffstat (limited to 'src/gui/itemeditor.cpp')
-rw-r--r-- | src/gui/itemeditor.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/itemeditor.cpp b/src/gui/itemeditor.cpp index 3e8a30e..58b0661 100644 --- a/src/gui/itemeditor.cpp +++ b/src/gui/itemeditor.cpp @@ -26,19 +26,19 @@ ItemEditor * ItemEditor::m_pSelf = 0l; -ItemEditor * ItemEditor::self( KateMDI::ToolView * tqparent ) +ItemEditor * ItemEditor::self( KateMDI::ToolView * parent ) { if (!m_pSelf) { - assert(tqparent); - m_pSelf = new ItemEditor(tqparent); + assert(parent); + m_pSelf = new ItemEditor(parent); } return m_pSelf; } -ItemEditor::ItemEditor( KateMDI::ToolView * tqparent ) - : TQWidget( (TQWidget*)tqparent, "Item Editor" ) +ItemEditor::ItemEditor( KateMDI::ToolView * parent ) + : TQWidget( (TQWidget*)parent, "Item Editor" ) { TQWhatsThis::add( this, i18n("This allows editing of advanced properties of the selected item(s). Right click on the picture of the item to set the orientation.") ); |