diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-10-22 13:05:29 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-10-22 13:05:29 +0000 |
commit | 5e2886ded2b2214b9e09ee0d08676ed31a32911e (patch) | |
tree | 3b89017f0cd3ac9e8b046592a4ef5bb22ae5af41 /plugins/AutoShutdown | |
parent | 2cbd98009118a9ea15b446820495b54c44fd069d (diff) |
Move utils files from "plugins/utils" to "/utils" so it can be used from protocols too
git-svn-id: http://svn.miranda-ng.org/main/trunk@15592 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AutoShutdown')
-rw-r--r-- | plugins/AutoShutdown/shutdown.vcxproj | 2 | ||||
-rw-r--r-- | plugins/AutoShutdown/shutdown.vcxproj.filters | 2 | ||||
-rw-r--r-- | plugins/AutoShutdown/src/stdafx.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/AutoShutdown/shutdown.vcxproj b/plugins/AutoShutdown/shutdown.vcxproj index a8adcdb798..40a23f52ee 100644 --- a/plugins/AutoShutdown/shutdown.vcxproj +++ b/plugins/AutoShutdown/shutdown.vcxproj @@ -26,7 +26,7 @@ <Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
<ItemGroup>
- <ClCompile Include="..\Utils\mir_fonts.cpp">
+ <ClCompile Include="..\..\utils\mir_fonts.cpp">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
</ItemGroup>
diff --git a/plugins/AutoShutdown/shutdown.vcxproj.filters b/plugins/AutoShutdown/shutdown.vcxproj.filters index c3f6e0e940..f0dff3dc2f 100644 --- a/plugins/AutoShutdown/shutdown.vcxproj.filters +++ b/plugins/AutoShutdown/shutdown.vcxproj.filters @@ -155,7 +155,7 @@ <ClCompile Include="src\shutdownsvc.cpp" />
<ClCompile Include="src\utils.cpp" />
<ClCompile Include="src\watcher.cpp" />
- <ClCompile Include="..\Utils\mir_fonts.cpp">
+ <ClCompile Include="..\..\utils\mir_fonts.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
diff --git a/plugins/AutoShutdown/src/stdafx.h b/plugins/AutoShutdown/src/stdafx.h index 87647c7928..2bff3bea17 100644 --- a/plugins/AutoShutdown/src/stdafx.h +++ b/plugins/AutoShutdown/src/stdafx.h @@ -57,7 +57,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <m_icolib.h>
#include <m_hotkeys.h>
-#include "../Utils/mir_fonts.h"
+#include "../../utils/mir_fonts.h"
#include <m_weather.h>
#include <m_toptoolbar.h>
|