forked from qt-creator/qt-creator
Kit: makeSticky() -> setSticky(), allows for unsetting sticky bit
Change-Id: I6aa7d7d52b681ee61d27c2d98e6fefe9cfd9532b Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
@@ -362,9 +362,9 @@ void DebuggerKitInformation::setDebuggerCommand(Kit *k, const FileName &command)
|
||||
k->setValue(DEBUGGER_INFORMATION, id);
|
||||
}
|
||||
|
||||
void DebuggerKitInformation::makeSticky(Kit *k)
|
||||
void DebuggerKitInformation::setSticky(Kit *k, bool b)
|
||||
{
|
||||
k->makeSticky(DEBUGGER_INFORMATION);
|
||||
k->setSticky(DEBUGGER_INFORMATION, b);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user