gui: tabs to spaces and remove extra empty lines at the end of files

This commit is contained in:
XhmikosR 2012-09-17 14:20:00 +03:00 committed by PKEuS
parent c42facae1f
commit 85f75179ff
3 changed files with 4 additions and 6 deletions

View File

@ -94,4 +94,3 @@ void ApplicationDialog::Ok()
accept(); accept();
} }
} }

View File

@ -540,10 +540,10 @@ void ResultsTree::contextMenuEvent(QContextMenuEvent * e)
} }
//Create an action for the application //Create an action for the application
QAction *copyfilename = new QAction(tr("Copy filename"), &menu); QAction *copyfilename = new QAction(tr("Copy filename"), &menu);
QAction *copypath = new QAction(tr("Copy full path"), &menu); QAction *copypath = new QAction(tr("Copy full path"), &menu);
QAction *copymessage = new QAction(tr("Copy message"), &menu); QAction *copymessage = new QAction(tr("Copy message"), &menu);
QAction *hide = new QAction(tr("Hide"), &menu); QAction *hide = new QAction(tr("Hide"), &menu);
if (multipleSelection) { if (multipleSelection) {
copyfilename->setDisabled(true); copyfilename->setDisabled(true);

View File

@ -41,4 +41,3 @@ private:
}; };
#endif #endif