/* * Copyright (c) Contributors to the Open 3D Engine Project * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #include "EditorDefs.h" #include "FeedbackDialog.h" AZ_PUSH_DISABLE_DLL_EXPORT_MEMBER_WARNING #include AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING namespace { QString feedbackText = "

We love getting feedback from our customers.

" "Feedback from our community helps us to constantly improve Open 3D Engine.

" "In addition to using our forums and AWS support channels, you can always email us with your comments and suggestions at " "o3de-feedback@amazon.com. " "While we do not respond to everyone who submits feedback, we read everything and aspire to use your feedback to improve Open 3D Engine for everyone."; } FeedbackDialog::FeedbackDialog(QWidget* pParent) : QDialog(pParent) , ui(new Ui::FeedbackDialog) { ui->setupUi(this); ui->feedbackLabel->setText(feedbackText); resize(size().expandedTo(sizeHint())); } FeedbackDialog::~FeedbackDialog() { } #include