diff options
author | Frédéric Boisnard <fredericx.boisnard@intel.com> | 2013-11-04 18:26:01 +0100 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-12 17:04:13 +0100 |
commit | ecddaa31a64a2f62f8685578faf3467dbdf5ffe5 (patch) | |
tree | e20cdc26203b3f3b8b3dbb76845a17b0da9a0ade | |
parent | 6060feda9662186b87b91315216b5f51793f326a (diff) | |
download | external_parameter-framework-ecddaa31a64a2f62f8685578faf3467dbdf5ffe5.zip external_parameter-framework-ecddaa31a64a2f62f8685578faf3467dbdf5ffe5.tar.gz external_parameter-framework-ecddaa31a64a2f62f8685578faf3467dbdf5ffe5.tar.bz2 |
Fix typo in PFW when loading plugins
BZ: 151782
There is a typo in the error message when a plugin is not found
(folowings instead of following).
This patch updates the error message.
Change-Id: Ifdb749fd90d646d0c04522874e879a329520de0f
Signed-off-by: Frédéric Boisnard <fredericx.boisnard@intel.com>
-rw-r--r-- | parameter/SystemClass.cpp | 2 | ||||
-rw-r--r-- | test/test-platform/TestPlatform.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/parameter/SystemClass.cpp b/parameter/SystemClass.cpp index 5d435d7..14db767 100644 --- a/parameter/SystemClass.cpp +++ b/parameter/SystemClass.cpp @@ -157,7 +157,7 @@ bool CSystemClass::loadSubsystemsFromSharedLibraries(list<string>& lstrError, string strPluginUnloaded; CUtility::asString(lstrPluginFiles, strPluginUnloaded, ", "); - lstrError.push_back("Unable to load the folowings plugings: " + strPluginUnloaded + "."); + lstrError.push_back("Unable to load the following plugins: " + strPluginUnloaded + "."); return false; } diff --git a/test/test-platform/TestPlatform.h b/test/test-platform/TestPlatform.h index 58f8dc5..e8b9823 100644 --- a/test/test-platform/TestPlatform.h +++ b/test/test-platform/TestPlatform.h @@ -64,7 +64,7 @@ private: * * @param[in] remoteCommand the first argument should be the name of the criterion to set. * if the criterion is provided in lexical space, - * the folowing arguments should be criterion new values + * the following arguments should be criterion new values * if the criterion is provided in numerical space, * the second argument should be the criterion new value */ |