From kde-commits Wed Oct 15 14:15:16 2003 From: Mario Scalas Date: Wed, 15 Oct 2003 14:15:16 +0000 To: kde-commits Subject: kdevelop/parts/fileview X-MARC-Message: https://marc.info/?l=kde-commits&m=106622735014678 CVS commit by marios: yet another bunch of compile fixes :-( M +3 -3 filetreewidget.cpp 1.49 --- kdevelop/parts/fileview/filetreewidget.cpp #1.48:1.49 @@ -168,5 +168,5 @@ void MyFileTreeViewItem::paintCell(QPain // @todo paint cell in a different color - switch (status) + switch (m_status) { case VCSFileInfo::Added: break; @@ -248,5 +248,5 @@ public: //kdDebug(9017) << "Found vcs info: " << vcsFileInfo.toString() << endl; if (URLUtil::isDirectory(fileURL)) - newItem->setStatus( "directory" ); + newItem->setStatus( VCSFileInfo::Directory ); } else @@ -263,5 +263,5 @@ public: FileTreeWidget::FileTreeWidget(FileViewPart *part, QWidget *parent, const char *name) : KFileTreeView(parent, name), m_part( part ), m_rootBranch( 0 ), - m_isReloadingTree( false ), m_isSyncingWithRepository( false ) + m_isReloadingTree( false ), m_isSyncingWithRepository( false ), m_actionToggleShowVCSFields( 0 ), m_actionToggleShowNonProjectFiles( 0 ) {