Skip to content

Commit

Permalink
rm dead code
Browse files Browse the repository at this point in the history
Signed-off-by: Viktor Kopp <[email protected]>
  • Loading branch information
vifactor authored and alexmucde committed Jan 7, 2025
1 parent 99013c1 commit 6971fa5
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@
* Must be a "C" include to interpret the imports correctly
* for MSVC compilers.
**/
#include "dlt_common.h"
extern "C" {

#include "dlt_user.h"
}

Expand Down Expand Up @@ -7863,8 +7861,6 @@ void MainWindow::on_actionJump_To_triggered()
}

jump_to_line(dlg.getIndex());


}


Expand Down Expand Up @@ -8227,18 +8223,10 @@ void MainWindow::on_actionDefault_Filter_Reload_triggered()
/* load the default filter list */
defaultFilter.load(dir.absolutePath());

QStringList completerList;

/* default filter list update combobox */
QDltFilterList *filterList;
foreach(filterList,defaultFilter.defaultFilterList){
// default filter list update combobox
for (const auto *filterList : defaultFilter.defaultFilterList) {
ui->comboBoxFilterSelection->addItem(filterList->getFilename());
completerList << filterList->getFilename();
}
//QCompleter *completer = new QCompleter(completerList, this);
//completer->setFilterMode(Qt::MatchContains);
//completer->setCaseSensitivity(Qt::CaseInsensitive);
//ui->comboBoxFilterSelection->setCompleter(completer);
}

void MainWindow::on_actionDefault_Filter_Create_Index_triggered()
Expand Down

0 comments on commit 6971fa5

Please sign in to comment.