Fixed issue where a new window to save password with a certain name would crash. Next add implementation

This commit is contained in:
amazing-username
2018-02-26 23:00:26 -06:00
parent cec1e0bbb6
commit 05b559bacf
6 changed files with 117 additions and 17 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef SAVEFILE_H_
#define SAVEFILE_H_
#include"CommonWindow.h"
#include"ViewingWindow.h"
class SaveFile : public QDialog, public CommonWindow, public ViewingWindow
{
Q_OBJECT
public:
SaveFile(QWidget* parent = 0);
private:
void setupWindow();
void connections();
unique_ptr<QLineEdit> filename;
unique_ptr<QPushButton> saveIt;
private slots:
void saveFileAs();
};
#endif