diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-13 10:33:47 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-13 10:33:47 +0900 |
commit | a7d0c9e487de9ae8c41d16c6da218151e3412cf3 (patch) | |
tree | fa1d62a720241045cb5096856b9d3d4c58b2b408 /src/mainwindow.cpp | |
parent | 55ea90e756410fb86e28de6ed7bd5cc7254f0920 (diff) | |
download | tellico-a7d0c9e487de9ae8c41d16c6da218151e3412cf3.tar.gz tellico-a7d0c9e487de9ae8c41d16c6da218151e3412cf3.zip |
cmake files: change keywords to lower case
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 5901dd9..e284014 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1651,7 +1651,7 @@ void MainWindow::slotUpdateCollectionToolBar(Data::CollPtr coll_) { if(tb) { KComboBox* cb = tb->getCombo(m_entryGrouping->itemId(i)); if(cb) { - // qt caches the combobox size and never recalculates the sizeHint() + // tqt caches the combobox size and never recalculates the sizeHint() // the source code recommends calling setFont to invalidate the sizeHint cb->setFont(cb->font()); cb->updateGeometry(); @@ -1836,7 +1836,7 @@ void MainWindow::setFilter(const TQString& text_) { } } // if the text contains any non-word characters, assume it's a regexp - // but \W in qt is letter, number, or '_', I want to be a bit less strict + // but \W in tqt is letter, number, or '_', I want to be a bit less strict TQRegExp rx(TQString::fromLatin1("[^\\w\\s-']")); if(text.find(rx) == -1) { // split by whitespace, and add rules for each word |