summaryrefslogtreecommitdiff
path: root/plugins/CopyEngine/Ultracopier/FileExistsDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CopyEngine/Ultracopier/FileExistsDialog.h')
-rw-r--r--plugins/CopyEngine/Ultracopier/FileExistsDialog.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/CopyEngine/Ultracopier/FileExistsDialog.h b/plugins/CopyEngine/Ultracopier/FileExistsDialog.h
index c637e3b..05ff7e0 100644
--- a/plugins/CopyEngine/Ultracopier/FileExistsDialog.h
+++ b/plugins/CopyEngine/Ultracopier/FileExistsDialog.h
@@ -24,14 +24,14 @@ class FileExistsDialog : public QDialog
Q_OBJECT
public:
/// \brief create the object and pass all the informations to it
- explicit FileExistsDialog(QWidget *parent,QFileInfo source,QFileInfo destination,QString firstRenamingRule,QString otherRenamingRule);
+ explicit FileExistsDialog(QWidget *parent,QFileInfo source,QFileInfo destination,std::string firstRenamingRule,std::string otherRenamingRule);
~FileExistsDialog();
/// \brief return the the always checkbox is checked
bool getAlways();
/// \brief return the action clicked
FileExistsAction getAction();
/// \brief return the new rename is case in manual renaming
- QString getNewName();
+ std::string getNewName();
protected:
void changeEvent(QEvent *e);
private slots:
@@ -51,10 +51,10 @@ private slots:
private:
Ui::fileExistsDialog *ui;
FileExistsAction action;
- QString oldName;
+ std::string oldName;
QFileInfo destinationInfo;
- QString firstRenamingRule;
- QString otherRenamingRule;
+ std::string firstRenamingRule;
+ std::string otherRenamingRule;
};
#endif // FILEEXISTSDIALOG_H