1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-27 16:54:15 +01:00

Make method setVboEnable not inline.

There is more stuf to do.
This commit is contained in:
Laurent Ribon 2012-03-19 20:38:21 +01:00
parent 75d1f74090
commit 081769fb7b

View File

@ -53,7 +53,7 @@ public:
void setAcFilename(QString acf);
void setBgFilename(QString bgf);
void setVboEnable(bool eVbo) { vboEnable = eVbo; }
void setVboEnable(bool eVbo);
void reloadScene();
void updateAttitude(int value);
@ -90,8 +90,6 @@ private:
QString acFilename;
QString bgFilename;
bool vboEnable;
bool loadError;
bool mvInitGLSuccess;
AttitudeActual* attActual;
};