This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
/**
* PairRbxDevDialog.h
* Copyright (c) 2013 ROBLOX Corp. All Rights Reserved.
*/
#pragma once
#include <QDialog>
#include "ui_PairRbxDevDialog.h"
/**
* Dialog for asking the user what to do with auto-save recovery files
* that were not cleaned up properly.
*/
class PairRbxDeviceDialog : public QDialog
{
Q_OBJECT
public:
PairRbxDeviceDialog(QWidget* Parent);
virtual ~PairRbxDeviceDialog();
void updatePairCode();
public Q_SLOTS:
void onCancel();
void clientPaired(const QString& clientName);
protected:
void closeEvent(QCloseEvent* event);
private:
static QStringList getFileList();
Ui::PairRbxDevDialog m_UI;
};