forked from qt-creator/qt-creator
Make adding user tools possible.
Adding new categories is not there yet though, neither is moving tools through the categories.
This commit is contained in:
@@ -193,6 +193,16 @@ QSharedPointer<ExternalTool> ExternalTool::preset() const
|
||||
return m_presetTool;
|
||||
}
|
||||
|
||||
void ExternalTool::setId(const QString &id)
|
||||
{
|
||||
m_id = id;
|
||||
}
|
||||
|
||||
void ExternalTool::setCategory(const QString &category)
|
||||
{
|
||||
m_displayCategory = category;
|
||||
}
|
||||
|
||||
void ExternalTool::setDisplayName(const QString &name)
|
||||
{
|
||||
m_displayName = name;
|
||||
|
Reference in New Issue
Block a user