diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:29 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:35:29 -0600 |
commit | d96d16a5d7133f94b2006b78d1e100c0dba81d3b (patch) | |
tree | 4315758705ec1dec8f19c684b0fc349a5f0f08dc /src/app | |
parent | c74c9068a8df1cf50ccda88a20dbfad1f9f30545 (diff) | |
download | filelight-d96d16a5d7133f94b2006b78d1e100c0dba81d3b.tar.gz filelight-d96d16a5d7133f94b2006b78d1e100c0dba81d3b.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/mainWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/mainWindow.cpp b/src/app/mainWindow.cpp index daa2dda..ca6b0c7 100644 --- a/src/app/mainWindow.cpp +++ b/src/app/mainWindow.cpp @@ -260,7 +260,7 @@ void setActionMenuTextOnly( KAction *a, TQString const &suffix ) { TQString const menu_text = suffix.isEmpty() ? a->text() - : i18n( "&Up: /home/mxcl", "%1: %2" ).tqarg( a->text(), suffix ); + : i18n( "&Up: /home/mxcl", "%1: %2" ).arg( a->text(), suffix ); for (int i = 0; i < a->containerCount(); ++i) { TQWidget *w = a->container( i ); |