summaryrefslogtreecommitdiffstats
path: root/tdeio/tdefile/kurlbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeio/tdefile/kurlbar.cpp')
-rw-r--r--tdeio/tdefile/kurlbar.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tdeio/tdefile/kurlbar.cpp b/tdeio/tdefile/kurlbar.cpp
index 2171c28f1..d893faf4f 100644
--- a/tdeio/tdefile/kurlbar.cpp
+++ b/tdeio/tdefile/kurlbar.cpp
@@ -377,7 +377,7 @@ KURLBarItem * KURLBar::insertDynamicItem(const KURL& url, const TQString& descri
return item;
}
-void KURLBar::setOrientation( Qt::Orientation orient )
+void KURLBar::setOrientation( TQt::Orientation orient )
{
m_listBox->setOrientation( orient );
setSizePolicy( TQSizePolicy( isVertical() ?
@@ -388,7 +388,7 @@ void KURLBar::setOrientation( Qt::Orientation orient )
TQSizePolicy::Maximum ));
}
-Qt::Orientation KURLBar::orientation() const
+TQt::Orientation KURLBar::orientation() const
{
return m_listBox->orientation();
}
@@ -399,7 +399,7 @@ void KURLBar::setListBox( KURLBarListBox *view )
if ( !view ) {
m_listBox = new KURLBarListBox( this, "urlbar listbox" );
- setOrientation( Qt::Vertical );
+ setOrientation( TQt::Vertical );
}
else {
m_listBox = view;
@@ -520,7 +520,7 @@ TQSize KURLBar::minimumSizeHint() const
void KURLBar::slotSelected( int button, TQListBoxItem *item )
{
- if ( button != Qt::LeftButton )
+ if ( button != TQt::LeftButton )
return;
slotSelected( item );
@@ -877,9 +877,9 @@ void KURLBarListBox::contextMenuEvent( TQContextMenuEvent *e )
}
}
-void KURLBarListBox::setOrientation( Qt::Orientation orient )
+void KURLBarListBox::setOrientation( TQt::Orientation orient )
{
- if ( orient == Qt::Vertical ) {
+ if ( orient == TQt::Vertical ) {
setColumnMode( 1 );
setRowMode( Variable );
}