Skip to content

Commit

Permalink
Marked DllDynamic::IsLoaded() as const
Browse files Browse the repository at this point in the history
  • Loading branch information
garbear committed Feb 26, 2013
1 parent 8100a5c commit bdcac07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/DynamicDll.h
Expand Up @@ -502,7 +502,7 @@ class DllDynamic
virtual ~DllDynamic();
virtual bool Load();
virtual void Unload();
virtual bool IsLoaded() { return m_dll!=NULL; }
virtual bool IsLoaded() const { return m_dll!=NULL; }
bool CanLoad();
bool EnableDelayedUnload(bool bOnOff);
bool SetFile(const CStdString& strDllName);
Expand Down

0 comments on commit bdcac07

Please sign in to comment.