Encryption, Decryption works

This commit is contained in:
amazing-username
2017-04-25 15:17:19 -05:00
parent fbee689234
commit 222f0c607b
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -5,9 +5,9 @@
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
MessagingControls* stuff = new MessagingControls;;
MessagingControls stuff{};
stuff->show();
stuff.show();
return app.exec();
}