diff --git a/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp b/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp
index d38b9893bc9e89788b073099cbd69f7f7e5fbb63..14bfecce161d508c80ecd03fea87175e1fd18742 100644
--- a/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp
+++ b/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp
@@ -91,11 +91,10 @@ void MobileLibraryParameters::writeProFile(QTextStream &str) const
 void MobileLibraryParameters::writeSymbianProFile(QTextStream &str) const
 {
     if (libraryType != QtProjectParameters::SharedLibrary)
-        return; //nothing to do when the library is not shared library
+        return; //nothing to do when the library is not a shared library
 
     str << "\n"
            "symbian {\n"
-           "    #Symbian specific definitions\n"
            "    MMP_RULES += EXPORTUNFROZEN\n"
            "    TARGET.UID3 = " + symbianUid + "\n"
            "    TARGET.CAPABILITY = " + generateCapabilitySet(symbianCapabilities).toAscii() + "\n"