fix small bug(wildcard), and change some comments
[mdictionary] / src / plugins / xdxf / XdxfDictDialog.h
index 92c30cc..6719d9e 100644 (file)
     Copyright 2010 Comarch S.A.
 
 *******************************************************************************/
-/*! \file XdxfDictDialog.h
+/*!
+    \file XdxfDictDialog.h
+    \author Mateusz Półrola <mateusz.polrola@comarch.pl>
 */
 
-
 #ifndef XDXFDICTDIALOG_H
 #define XDXFDICTDIALOG_H
 
 
 class XdxfPlugin;
 
-
 //! Implementation of DictDialog interface for xdxf plugin
 class XdxfDictDialog : public DictDialog {
     Q_OBJECT
 public:
     explicit XdxfDictDialog(XdxfPlugin* plugin, QObject *parent = 0);
     /*!
-      Shows "add new xdxf dictionary" dialog and returns settings of a new dict
-      \param parent parent widget on which dialog will be displayed
+        Shows "add new xdxf dictionary" dialog and returns settings of a new dict
+        \param parent parent widget on which dialog will be displayed
       */
     Settings* addNewDictionary(QWidget *parent);
 
     /*!
-      Shows settings dialog and saves new settings in plugin
-      \param parent parent widget on which dialog will be displayed
-      */
+        Shows settings dialog and saves new settings in plugin
+        \param parent parent widget on which dialog will be displayed
+    */
     void changeSettings(QWidget *parent);
 
-    /*!
-      Returns last parent of this dialog
-      */
+    //! Returns last parent of this dialog
     QWidget* lastDialogParent();
 
-    /*!
-      Sets last parent of this dialog
-      */
+    //! Sets last parent of this dialog
     void setLastDialogParent(QWidget*);
 
 private: