diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:40:25 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-27 04:09:43 +0200 |
commit | 07dae48f6a81b834e9f1544601a21051873ed0e2 (patch) | |
tree | 850d35b0e517659d431d0921a46d9b35b39a3712 /src/libgui/device_gui.cpp | |
parent | 1177a9f23b1c9929bef9464f434d82273783204c (diff) | |
download | piklab-07dae48f6a81b834e9f1544601a21051873ed0e2.tar.gz piklab-07dae48f6a81b834e9f1544601a21051873ed0e2.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit 4374b9aebc67cce74e5c1099d5f4ad1749b05fc6)
Diffstat (limited to 'src/libgui/device_gui.cpp')
-rw-r--r-- | src/libgui/device_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libgui/device_gui.cpp b/src/libgui/device_gui.cpp index fafd5a1..e5c6d4a 100644 --- a/src/libgui/device_gui.cpp +++ b/src/libgui/device_gui.cpp @@ -260,12 +260,12 @@ void DeviceChooser::Dialog::updateList(const TQString &device) TQListViewItem *selected = 0; const Programmer::Group *pgroup = programmerGroup(); if ( pgroup && pgroup->supportedDevices().isEmpty() && pgroup->isSoftware() ) { - _deviceView->setText(i18n("Could not detect supported devices for \"%1\". Please check installation.").tqarg(pgroup->label())); + _deviceView->setText(i18n("Could not detect supported devices for \"%1\". Please check installation.").arg(pgroup->label())); return; } const Tool::Group *tgroup = toolGroup(); if ( tgroup && tgroup->supportedDevices().isEmpty() ) { - _deviceView->setText(i18n("Could not detect supported devices for toolchain \"%1\". Please check installation.").tqarg(tgroup->label())); + _deviceView->setText(i18n("Could not detect supported devices for toolchain \"%1\". Please check installation.").arg(tgroup->label())); return; } for (int i=list.count()-1; i>=0; i--) { |