mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 11:33:07 +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
|
#ifdef HAVE_RSSDK
|
||||||
QMenu* realSenseOptionsMenu = handOptionsMenu->addMenu("RealSense");
|
QMenu* realSenseOptionsMenu = handOptionsMenu->addMenu("RealSense");
|
||||||
addActionToQMenuAndActionHash(realSenseOptionsMenu, MenuOption::LoadRSSDKFile, 0, this, SLOT(loadRSSDKFile()));
|
addActionToQMenuAndActionHash(realSenseOptionsMenu, MenuOption::LoadRSSDKFile, 0,
|
||||||
|
RealSense::getInstance(), SLOT(loadRSSDKFile()));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
QMenu* networkMenu = developerMenu->addMenu("Network");
|
QMenu* networkMenu = developerMenu->addMenu("Network");
|
||||||
|
@ -1095,10 +1096,6 @@ void Menu::displayNameLocationResponse(const QString& errorString) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Menu::loadRSSDKFile() {
|
|
||||||
RealSense::getInstance()->loadRSSDKFile();
|
|
||||||
}
|
|
||||||
|
|
||||||
void Menu::runTests() {
|
void Menu::runTests() {
|
||||||
runTimingTests();
|
runTimingTests();
|
||||||
}
|
}
|
||||||
|
|
|
@ -148,7 +148,6 @@ private slots:
|
||||||
void changePrivateKey();
|
void changePrivateKey();
|
||||||
void runTests();
|
void runTests();
|
||||||
void displayNameLocationResponse(const QString& errorString);
|
void displayNameLocationResponse(const QString& errorString);
|
||||||
void loadRSSDKFile();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
#if defined(Q_OS_MAC) || defined(Q_OS_WIN)
|
#if defined(Q_OS_MAC) || defined(Q_OS_WIN)
|
||||||
|
|
|
@ -40,6 +40,7 @@ public:
|
||||||
|
|
||||||
virtual void update();
|
virtual void update();
|
||||||
|
|
||||||
|
public slots:
|
||||||
void loadRSSDKFile();
|
void loadRSSDKFile();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
Loading…
Reference in a new issue