ui: Removed Code Blocks project type button
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
#include "utility/messaging/type/MessageLoadProject.h"
|
||||
|
||||
#include "utility/solution/SolutionParserVisualStudio.h"
|
||||
#include "utility/solution/SolutionParserCodeBlocks.h"
|
||||
// #include "utility/solution/SolutionParserCodeBlocks.h"
|
||||
|
||||
#include "utility/messaging/type/MessageStatus.h"
|
||||
|
||||
@@ -38,7 +38,7 @@ QtProjectWizzard::QtProjectWizzard(QWidget* parent)
|
||||
|
||||
// wip
|
||||
m_parserManager->pushSolutionParser(std::make_shared<SolutionParserVisualStudio>());
|
||||
m_parserManager->pushSolutionParser(std::make_shared<SolutionParserCodeBlocks>());
|
||||
// m_parserManager->pushSolutionParser(std::make_shared<SolutionParserCodeBlocks>());
|
||||
}
|
||||
|
||||
void QtProjectWizzard::showWindow()
|
||||
|
||||
@@ -100,7 +100,7 @@ void QtProjectWizzardContentSelect::populateWindow(QGridLayout* layout)
|
||||
{
|
||||
for (unsigned int i = 0; i < manager->getParserCount(); i++)
|
||||
{
|
||||
std::string name = manager->getParserName(i);
|
||||
std::string name = manager->getParserButtonText(i);
|
||||
|
||||
QToolButton* button = createProjectButton(name.c_str(),
|
||||
(ResourcePaths::getGuiPath() + "icon/project_vs_256_256.png").c_str());
|
||||
@@ -142,7 +142,7 @@ void QtProjectWizzardContentSelect::populateWindow(QGridLayout* layout)
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
||||
|
||||
QFrame* container = new QFrame();
|
||||
container->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
|
||||
|
||||
Reference in New Issue
Block a user