diff options
author | François Andriot <[email protected]> | 2015-05-26 01:57:54 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-05-26 01:57:54 +0200 |
commit | b97628ae1a31d55f37279c3dfc3d72d09e5229f0 (patch) | |
tree | 6f571b3170fe5a2139b0c8e04ed70ffcbc44a30a /systemsettings/tdecmodulemenu.cpp | |
parent | 8860f222a04cd1aba5177b1cd3e22ef696e5cfb9 (diff) | |
download | tde-systemsettings-b97628ae1a31d55f37279c3dfc3d72d09e5229f0.tar.gz tde-systemsettings-b97628ae1a31d55f37279c3dfc3d72d09e5229f0.zip |
Fix missing return
This resolves Bug 2438
Signed-off-by: François Andriot <[email protected]>
Diffstat (limited to 'systemsettings/tdecmodulemenu.cpp')
-rw-r--r-- | systemsettings/tdecmodulemenu.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/systemsettings/tdecmodulemenu.cpp b/systemsettings/tdecmodulemenu.cpp index 56c1220..d8f84ce 100644 --- a/systemsettings/tdecmodulemenu.cpp +++ b/systemsettings/tdecmodulemenu.cpp @@ -185,4 +185,5 @@ TQString TDECModuleMenu::deriveCaptionFromPath( const TQString &menuPath ) return result; } } + return result; } |