~ubuntu-branches/ubuntu/trusty/kdevplatform/trusty-proposed

« back to all changes in this revision

Viewing changes to plugins/codeutils/codeutilsplugin.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-12-09 17:24:43 UTC
  • mfrom: (0.3.25)
  • Revision ID: package-import@ubuntu.com-20131209172443-rstb3roh6fj0c5vw
Tags: 1.6.0-0ubuntu1
* New upstream release (LP: #1259220)
* Update install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
using namespace KTextEditor;
57
57
 
58
58
K_PLUGIN_FACTORY(CodeUtilsPluginFactory, registerPlugin<CodeUtilsPlugin>(); )
59
 
K_EXPORT_PLUGIN(CodeUtilsPluginFactory(KAboutData("kdevcodeutils","kdevcodeutils", ki18n("Code Utilities"), "0.1", ki18n("Various utilities that help you code faster."), KAboutData::License_GPL)
 
59
K_EXPORT_PLUGIN(CodeUtilsPluginFactory(KAboutData("kdevcodeutils","kdevcodeutils", ki18n("Code Utilities"), "0.1", ki18n("Collection of various utilities that increase productivity while programming."), KAboutData::License_GPL)
60
60
    .addAuthor(ki18n("Milian Wolff"), ki18n("Author"), "mail@milianw.de", "http://milianw.de")
61
61
))
62
62
 
76
76
    connect( action, SIGNAL(triggered(bool)), this, SLOT(documentDeclaration()) );
77
77
    action->setToolTip( i18n( "Add Doxygen skeleton for declaration under cursor." ) );
78
78
    // i18n: translate title same as the action name
79
 
    action->setWhatsThis( i18n( "<b>Document Declaration</b><p>"
80
 
                                "Adds a basic Doxygen comment skeleton in front of "
 
79
    action->setWhatsThis( i18n( "Adds a basic Doxygen comment skeleton in front of "
81
80
                                "the declaration under the cursor, e.g. with all the "
82
 
                                "parameter of a function."
83
 
                                "</p>" ) );
 
81
                                "parameter of a function." ) );
84
82
    action->setIcon( KIcon( "documentinfo" ) );
85
83
}
86
84