diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-21 13:41:54 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-21 13:41:54 +0300 |
commit | 1e7b2b400a5ac674c00c2c0ad01f51646edd2de3 (patch) | |
tree | 5e31e3c736bbd18a17a85c098cf13f80402bc351 /plugins | |
parent | 206f15f700b31dc45c2ad6b7c1ec21142d6a38a5 (diff) |
Scriver: standardizing file names
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Scriver/scriver.vcxproj | 10 | ||||
-rw-r--r-- | plugins/Scriver/src/chat.h (renamed from plugins/Scriver/src/chat/chat.h) | 0 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_log.cpp (renamed from plugins/Scriver/src/chat/log.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_main.cpp (renamed from plugins/Scriver/src/chat/main.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_manager.cpp (renamed from plugins/Scriver/src/chat/manager.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_options.cpp (renamed from plugins/Scriver/src/chat/options.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_tools.cpp (renamed from plugins/Scriver/src/chat/tools.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/chat_window.cpp (renamed from plugins/Scriver/src/chat/window.cpp) | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/stdafx.h | 2 |
9 files changed, 8 insertions, 16 deletions
diff --git a/plugins/Scriver/scriver.vcxproj b/plugins/Scriver/scriver.vcxproj index 02d2c10008..15831ec0b1 100644 --- a/plugins/Scriver/scriver.vcxproj +++ b/plugins/Scriver/scriver.vcxproj @@ -25,12 +25,4 @@ <ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
- <ItemGroup>
- <ClCompile Include="src\chat\*.cpp">
- <PrecompiledHeaderFile>..\stdafx.h</PrecompiledHeaderFile>
- </ClCompile>
- </ItemGroup>
- <ItemGroup>
- <ClInclude Include="src\chat\chat.h" />
- </ItemGroup>
-</Project>
\ No newline at end of file +</Project>
diff --git a/plugins/Scriver/src/chat/chat.h b/plugins/Scriver/src/chat.h index ca620576f1..ca620576f1 100644 --- a/plugins/Scriver/src/chat/chat.h +++ b/plugins/Scriver/src/chat.h diff --git a/plugins/Scriver/src/chat/log.cpp b/plugins/Scriver/src/chat_log.cpp index 02ba38a147..3d8ea3eb55 100644 --- a/plugins/Scriver/src/chat/log.cpp +++ b/plugins/Scriver/src/chat_log.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
#ifndef EM_GETSCROLLPOS
#define EM_GETSCROLLPOS (WM_USER+221)
diff --git a/plugins/Scriver/src/chat/main.cpp b/plugins/Scriver/src/chat_main.cpp index 086b64c529..f4b4755e56 100644 --- a/plugins/Scriver/src/chat/main.cpp +++ b/plugins/Scriver/src/chat_main.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
// globals
CHAT_MANAGER *pci;
diff --git a/plugins/Scriver/src/chat/manager.cpp b/plugins/Scriver/src/chat_manager.cpp index 307059dfd8..f86764560a 100644 --- a/plugins/Scriver/src/chat/manager.cpp +++ b/plugins/Scriver/src/chat_manager.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
HWND SM_FindWindowByContact(MCONTACT hContact)
{
diff --git a/plugins/Scriver/src/chat/options.cpp b/plugins/Scriver/src/chat_options.cpp index 8ee73f0592..ee3b0647df 100644 --- a/plugins/Scriver/src/chat/options.cpp +++ b/plugins/Scriver/src/chat_options.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
#define UM_CHECKSTATECHANGE (WM_USER+100)
diff --git a/plugins/Scriver/src/chat/tools.cpp b/plugins/Scriver/src/chat_tools.cpp index 148410d125..050d4656c5 100644 --- a/plugins/Scriver/src/chat/tools.cpp +++ b/plugins/Scriver/src/chat_tools.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
wchar_t* my_strstri(const wchar_t* s1, const wchar_t* s2)
{
diff --git a/plugins/Scriver/src/chat/window.cpp b/plugins/Scriver/src/chat_window.cpp index ebdfc49dee..b6a9cd29d3 100644 --- a/plugins/Scriver/src/chat/window.cpp +++ b/plugins/Scriver/src/chat_window.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
struct MESSAGESUBDATA
{
diff --git a/plugins/Scriver/src/stdafx.h b/plugins/Scriver/src/stdafx.h index 15dde61b6f..c276c7e0fa 100644 --- a/plugins/Scriver/src/stdafx.h +++ b/plugins/Scriver/src/stdafx.h @@ -120,7 +120,7 @@ int StatusIconPressed(WPARAM wParam, LPARAM lParam); #include "input.h"
#include "richutil.h"
#include "statusicon.h"
-#include "chat/chat.h"
+#include "chat.h"
extern GlobalMessageData g_dat;
|