fix small bug(wildcard), and change some comments
[mdictionary] / src / plugins / xdxf / XdxfDictDownloadProgressDialog.h
index 9238901..9e715d3 100644 (file)
     Copyright 2010 Comarch S.A.
 
 *******************************************************************************/
-
 /*!
-  \file XdxfDictDownloadProgressDialog.h
-  \author Mateusz Półrola <mateusz.polrola@comarch.com>
-  */
+    \file XdxfDictDownloadProgressDialog.h
+    \author Mateusz Półrola <mateusz.polrola@comarch.com>
+*/
 
 #ifndef XDXFDICTDOWNLOADPROGRESSDIALOG_H
 #define XDXFDICTDOWNLOADPROGRESSDIALOG_H
@@ -31,9 +30,9 @@
 #include <QtGui>
 
 /*!
-  Shows downloading progress bar. Currently it displays "busy bar".
-  User can cancel current download by pressing cancel button
-  */
+    Shows downloading progress bar. Currently it displays "busy bar".
+    User can cancel current download by pressing cancel button
+*/
 class XdxfDictDownloadProgressDialog : public QDialog {
     Q_OBJECT
 public:
@@ -46,6 +45,10 @@ public Q_SLOTS:
     //! Set text which will be displayed to user as info about current download
     void setText(QString);
 
+    /*!
+        set parameters of prograsBar(wher "prograss"*100 is value,
+        and maxValue=100
+    */
     void updateProgress(float progress);
 
     void show();
@@ -54,7 +57,6 @@ Q_SIGNALS:
     //! signal emitted when user cancels downloading of a dictionary
     void cancelDownloading();
 
-
 private:
     QLabel* downloadLabel;
     QProgressBar* downloadProgressBar;