forked from qt-creator/qt-creator
Android: Fix translation issues
Add missing Q_OBJECT macros Change-Id: Ic2b01374e4426a7c90e9a8b4c3676e00c200300d Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
@@ -67,7 +67,10 @@ const char KeystoreLocationKey[] = "KeystoreLocation";
|
||||
const char BuildTargetSdkKey[] = "BuildTargetSdk";
|
||||
const char VerboseOutputKey[] = "VerboseOutput";
|
||||
|
||||
class PasswordInputDialog : public QDialog {
|
||||
class PasswordInputDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
enum Context{
|
||||
KeystorePassword = 1,
|
||||
@@ -435,3 +438,5 @@ QString PasswordInputDialog::getPassword(Context context, std::function<bool (co
|
||||
}
|
||||
|
||||
} // namespace Android
|
||||
|
||||
#include "androidbuildapkstep.moc"
|
||||
|
||||
Reference in New Issue
Block a user