diff options
Diffstat (limited to 'ark/filelistview.cpp')
-rw-r--r-- | ark/filelistview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ark/filelistview.cpp b/ark/filelistview.cpp index 47a4d6f..4a0786b 100644 --- a/ark/filelistview.cpp +++ b/ark/filelistview.cpp @@ -162,7 +162,7 @@ void FileLVI::setText( int column, const TQString &text ) TQListViewItem::setText(column, text); else { - m_timeStamp = TQDateTime::fromString( text, Qt::ISODate ); + m_timeStamp = TQDateTime::fromString( text, TQt::ISODate ); TQListViewItem::setText( column, TDEGlobal::locale()->formatDateTime( m_timeStamp ) ); } } @@ -342,7 +342,7 @@ bool FileListView::isSelectionEmpty() void FileListView::contentsMousePressEvent(TQMouseEvent *e) { - if( e->button()==Qt::LeftButton ) + if( e->button()==TQt::LeftButton ) { m_pressed = true; m_presspos = e->pos(); |