mirror of
https://github.com/overte-org/overte.git
synced 2025-04-24 05:53:29 +02:00
Removed loadRSSDKFile() from Menu
This commit is contained in:
parent
9e3b4c6834
commit
7f702d3bff
3 changed files with 3 additions and 6 deletions
|
@ -440,7 +440,8 @@ Menu::Menu() {
|
|||
|
||||
#ifdef HAVE_RSSDK
|
||||
QMenu* realSenseOptionsMenu = handOptionsMenu->addMenu("RealSense");
|
||||
addActionToQMenuAndActionHash(realSenseOptionsMenu, MenuOption::LoadRSSDKFile, 0, this, SLOT(loadRSSDKFile()));
|
||||
addActionToQMenuAndActionHash(realSenseOptionsMenu, MenuOption::LoadRSSDKFile, 0,
|
||||
RealSense::getInstance(), SLOT(loadRSSDKFile()));
|
||||
#endif
|
||||
|
||||
QMenu* networkMenu = developerMenu->addMenu("Network");
|
||||
|
@ -1095,10 +1096,6 @@ void Menu::displayNameLocationResponse(const QString& errorString) {
|
|||
}
|
||||
}
|
||||
|
||||
void Menu::loadRSSDKFile() {
|
||||
RealSense::getInstance()->loadRSSDKFile();
|
||||
}
|
||||
|
||||
void Menu::runTests() {
|
||||
runTimingTests();
|
||||
}
|
||||
|
|
|
@ -148,7 +148,6 @@ private slots:
|
|||
void changePrivateKey();
|
||||
void runTests();
|
||||
void displayNameLocationResponse(const QString& errorString);
|
||||
void loadRSSDKFile();
|
||||
|
||||
private:
|
||||
#if defined(Q_OS_MAC) || defined(Q_OS_WIN)
|
||||
|
|
|
@ -40,6 +40,7 @@ public:
|
|||
|
||||
virtual void update();
|
||||
|
||||
public slots:
|
||||
void loadRSSDKFile();
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Reference in a new issue