diff options
author | Brad King <brad.king@kitware.com> | 2018-11-28 14:07:13 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-11-28 14:07:45 (GMT) |
commit | 772edffbf0c08fc0a6fcf74fb98545b7afcfee13 (patch) | |
tree | 76c783267933679031d892f16960fd2a1f87b3f6 /Source/QtDialog/AddCacheEntry.cxx | |
parent | 58ebbf14c232d647e920727225dbf4c64d648128 (diff) | |
parent | 3e6058078433089f145903d25e06dafadeee9629 (diff) | |
download | CMake-772edffbf0c08fc0a6fcf74fb98545b7afcfee13.zip CMake-772edffbf0c08fc0a6fcf74fb98545b7afcfee13.tar.gz CMake-772edffbf0c08fc0a6fcf74fb98545b7afcfee13.tar.bz2 |
Merge topic 'readability-static-accessed-through-instance'
3e60580784 clang-tidy: Fix readability-static-accessed-through-instance
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2647
Diffstat (limited to 'Source/QtDialog/AddCacheEntry.cxx')
-rw-r--r-- | Source/QtDialog/AddCacheEntry.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/QtDialog/AddCacheEntry.cxx b/Source/QtDialog/AddCacheEntry.cxx index 70610d7..f5e0777 100644 --- a/Source/QtDialog/AddCacheEntry.cxx +++ b/Source/QtDialog/AddCacheEntry.cxx @@ -32,12 +32,12 @@ AddCacheEntry::AddCacheEntry(QWidget* p, const QStringList& varNames, this->StackedWidget->addWidget(path); this->StackedWidget->addWidget(filepath); this->StackedWidget->addWidget(string); - this->setTabOrder(this->Name, this->Type); - this->setTabOrder(this->Type, cb); - this->setTabOrder(cb, path); - this->setTabOrder(path, filepath); - this->setTabOrder(filepath, string); - this->setTabOrder(string, this->Description); + AddCacheEntry::setTabOrder(this->Name, this->Type); + AddCacheEntry::setTabOrder(this->Type, cb); + AddCacheEntry::setTabOrder(cb, path); + AddCacheEntry::setTabOrder(path, filepath); + AddCacheEntry::setTabOrder(filepath, string); + AddCacheEntry::setTabOrder(string, this->Description); QCompleter* completer = new QCompleter(this->VarNames, this); this->Name->setCompleter(completer); connect(completer, SIGNAL(activated(const QString&)), this, |