summaryrefslogtreecommitdiff
path: root/plugins/CopyEngine/Ultracopier/FolderExistsDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CopyEngine/Ultracopier/FolderExistsDialog.h')
-rw-r--r--plugins/CopyEngine/Ultracopier/FolderExistsDialog.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/CopyEngine/Ultracopier/FolderExistsDialog.h b/plugins/CopyEngine/Ultracopier/FolderExistsDialog.h
index c043f65..a3bcf67 100644
--- a/plugins/CopyEngine/Ultracopier/FolderExistsDialog.h
+++ b/plugins/CopyEngine/Ultracopier/FolderExistsDialog.h
@@ -25,14 +25,14 @@ class FolderExistsDialog : public QDialog
public:
/// \brief create the object and pass all the informations to it
- explicit FolderExistsDialog(QWidget *parent,QFileInfo source,bool isSame,QFileInfo destination,QString firstRenamingRule,QString otherRenamingRule);
+ explicit FolderExistsDialog(QWidget *parent,QFileInfo source,bool isSame,QFileInfo destination,std::string firstRenamingRule,std::string otherRenamingRule);
~FolderExistsDialog();
/// \brief return the the always checkbox is checked
bool getAlways();
/// \brief return the action clicked
FolderExistsAction getAction();
/// \brief return the new rename is case in manual renaming
- QString getNewName();
+ std::string getNewName();
protected:
void changeEvent(QEvent *e);
private slots:
@@ -44,13 +44,13 @@ private slots:
void on_Merge_clicked();
void on_lineEditNewName_editingFinished();
void on_lineEditNewName_returnPressed();
- void on_lineEditNewName_textChanged(const QString &arg1);
+ void on_lineEditNewName_textChanged(const std::string &arg1);
private:
Ui::folderExistsDialog *ui;
FolderExistsAction action;
- QString oldName;
- QString firstRenamingRule;
- QString otherRenamingRule;
+ std::string oldName;
+ std::string firstRenamingRule;
+ std::string otherRenamingRule;
QFileInfo destinationInfo;
};