summaryrefslogtreecommitdiffstats
path: root/src/__TODO/IndentHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/__TODO/IndentHandler.h')
-rw-r--r--src/__TODO/IndentHandler.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/__TODO/IndentHandler.h b/src/__TODO/IndentHandler.h
index f576518..579807d 100644
--- a/src/__TODO/IndentHandler.h
+++ b/src/__TODO/IndentHandler.h
@@ -89,7 +89,7 @@ class IndentHandler : public TQWidget
bool createIndenterCallString();
void initIndenterMenu();
- //! Holds a reference to all created pages of the parameter categories toolbox and the pages
+ // Holds a reference to all created pages of the parameter categories toolbox and the pages
// boxlayout
struct IndenterParameterCategoryPage
{
@@ -99,7 +99,7 @@ class IndentHandler : public TQWidget
TQVector<IndenterParameterCategoryPage> _indenterParameterCategoryPages;
- //! Holds a reference to all checkboxes needed for boolean parameter setting and the parameters
+ // Holds a reference to all checkboxes needed for boolean parameter setting and the parameters
// name
struct ParamBoolean
{
@@ -111,7 +111,7 @@ class IndentHandler : public TQWidget
TQVector<ParamBoolean> _paramBooleans;
- //! Holds a reference to all line edits needed for parameter setting and the parameters name
+ // Holds a reference to all line edits needed for parameter setting and the parameters name
struct ParamString
{
TQString paramName;
@@ -123,7 +123,7 @@ class IndentHandler : public TQWidget
TQVector<ParamString> _paramStrings;
- //! Hold a reference to all spin boxes needed for parameter setting and the parameters name
+ // Hold a reference to all spin boxes needed for parameter setting and the parameters name
struct ParamNumeric
{
TQString paramName;
@@ -135,7 +135,7 @@ class IndentHandler : public TQWidget
TQVector<ParamNumeric> _paramNumerics;
- //! Hold a reference to all combo boxes needed for parameter setting and the parameters name
+ // Hold a reference to all combo boxes needed for parameter setting and the parameters name
struct ParamMultiple
{
TQString paramName;
@@ -150,14 +150,14 @@ class IndentHandler : public TQWidget
TQComboBox *_indenterSelectionCombobox;
TQToolButton *_indenterParameterHelpButton;
- //! Vertical layout box, into which the toolbox will be added
+ // Vertical layout box, into which the toolbox will be added
TQVBoxLayout *_toolBoxContainerLayout;
TQToolBox *_indenterParameterCategoriesToolBox;
UiGuiIniFileParser *_indenterSettings;
TQStringList _indenterParameters;
- //! The indenters name in a descriptive form
+ // The indenters name in a descriptive form
TQString _indenterName;
- //! The indenters file name (w/o extension), that is being called
+ // The indenters file name (w/o extension), that is being called
TQString _indenterFileName;
TQString _indenterDirctoryStr;
TQString _tempDirctoryStr;
@@ -183,9 +183,9 @@ class IndentHandler : public TQWidget
TQAction *_actionSaveIndenterConfigFile;
TQAction *_actionCreateShellScript;
TQAction *_actionResetIndenterParameters;
- //! Needed for the NPP plugin.
+ // Needed for the NPP plugin.
void (*_parameterChangedCallback)(void);
- //! Needed for the NPP plugin.
+ // Needed for the NPP plugin.
void (*_windowClosedCallback)(void);
//TODO: This function should go into a string helper/tool class/file.