fix small bug(wildcard), and change some comments
[mdictionary] / src / plugins / xdxf / XdxfCachingDialog.cpp
index d26e1b5..fce967e 100644 (file)
     Copyright 2010 Comarch S.A.
 
 *******************************************************************************/
-
-/*! \file XdxfCachingDialog.cpp
+/*!
+    \file XdxfCachingDialog.cpp
+    \author Mateusz Półrola
 */
-//Created by Mateusz Półrola
 
 #include "XdxfCachingDialog.h"
 #include "xdxfplugin.h"
@@ -39,8 +39,6 @@ XdxfCachingDialog::XdxfCachingDialog(QWidget *parent): QDialog(parent) {
     cachingProgressBar->setTextVisible(true);
 
     cancelButton = new QPushButton(tr("Cancel"),this);
-
-
     cachingTimeLabel = new QLabel(this);
     cachingTimeLabel->hide();
 
@@ -50,7 +48,6 @@ XdxfCachingDialog::XdxfCachingDialog(QWidget *parent): QDialog(parent) {
             verticalLayout->addWidget(cachingLabel, 0, Qt::AlignCenter);
     #endif
 
-
     verticalLayout->addWidget(cachingTimeLabel);
     verticalLayout->addWidget(cachingProgressBar);
     verticalLayout->addWidget(cancelButton);
@@ -59,7 +56,6 @@ XdxfCachingDialog::XdxfCachingDialog(QWidget *parent): QDialog(parent) {
             this, SIGNAL(cancelCaching()));
 
     time.start();
-
     setModal(true);
 }
 
@@ -68,6 +64,7 @@ void XdxfCachingDialog::reject() {
     return;
 }
 
+
 void XdxfCachingDialog::updateCachingProgress(int progress, int time) {
     cachingProgressBar->setValue(progress);