diff options
-rw-r--r-- | plugins/YAPP/src/icons.cpp | 11 | ||||
-rw-r--r-- | plugins/YAPP/src/icons.h | 1 | ||||
-rw-r--r-- | src/core/stdurl/stdurl_10.vcxproj | 1 | ||||
-rw-r--r-- | src/core/stdurl/stdurl_10.vcxproj.filters | 3 |
4 files changed, 0 insertions, 16 deletions
diff --git a/plugins/YAPP/src/icons.cpp b/plugins/YAPP/src/icons.cpp index 97a4290406..6c48b95d0c 100644 --- a/plugins/YAPP/src/icons.cpp +++ b/plugins/YAPP/src/icons.cpp @@ -12,17 +12,6 @@ static IconItem iconList[] = { LPGEN("Popup History"), ICO_HISTORY, IDI_HISTORY },
};
-/**
- * Returns a icon, identified by a name
- * @param pszIcon - name of the icon
- * @param big - bool big icon (default = false)
- * @return: HICON if the icon is loaded, NULL otherwise
- **/
-HICON IcoLib_GetIcon(LPCSTR pszIcon, bool big)
-{
- return (pszIcon) ? Skin_GetIcon(pszIcon, big) : NULL;
-}
-
void InitIcons()
{
Icon_Register(hInst, SECT_TOLBAR, iconList, 2);
diff --git a/plugins/YAPP/src/icons.h b/plugins/YAPP/src/icons.h index d759ab5e78..ac90ab308b 100644 --- a/plugins/YAPP/src/icons.h +++ b/plugins/YAPP/src/icons.h @@ -12,6 +12,5 @@ #define ICO_HISTORY MODULE"_history"
void InitIcons();
-HICON IcoLib_GetIcon(LPCSTR pszIcon, bool big=false);
#endif // __icons_h__
diff --git a/src/core/stdurl/stdurl_10.vcxproj b/src/core/stdurl/stdurl_10.vcxproj index adea018b75..98107c4fd4 100644 --- a/src/core/stdurl/stdurl_10.vcxproj +++ b/src/core/stdurl/stdurl_10.vcxproj @@ -210,7 +210,6 @@ <ClCompile Include="urldialogs.cpp" />
</ItemGroup>
<ItemGroup>
- <ClInclude Include="..\stdplug.h" />
<ClInclude Include="commonheaders.h" />
<ClInclude Include="url.h" />
</ItemGroup>
diff --git a/src/core/stdurl/stdurl_10.vcxproj.filters b/src/core/stdurl/stdurl_10.vcxproj.filters index 046e56322f..2706f9b2f2 100644 --- a/src/core/stdurl/stdurl_10.vcxproj.filters +++ b/src/core/stdurl/stdurl_10.vcxproj.filters @@ -29,9 +29,6 @@ </ClCompile>
</ItemGroup>
<ItemGroup>
- <ClInclude Include="..\stdplug.h">
- <Filter>Header Files</Filter>
- </ClInclude>
<ClInclude Include="commonheaders.h">
<Filter>Header Files</Filter>
</ClInclude>
|