Commit f0bde3b9 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: registry, inline empty destructor

parent 81efe326
......@@ -35,10 +35,6 @@ QVLCRegistry::QVLCRegistry( HKEY rootKey )
m_RootKey = rootKey;
}
QVLCRegistry::~QVLCRegistry( void )
{
}
bool QVLCRegistry::RegistryKeyExists( const char *path )
{
HKEY keyHandle;
......
......@@ -32,7 +32,7 @@ private:
char m_pathBuffer[256];
public:
QVLCRegistry(HKEY rootKey);
~QVLCRegistry(void);
~QVLCRegistry(void) {}
void WriteRegistryInt( const char *path, const char *valueName, int value);
void WriteRegistryString( const char *path, const char *valueName, const char *value);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment