Skip to content

Commit

Permalink
Rename xrXMLParser.cpp/*.h -> XMLDocument.cpp/*.hpp.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 25, 2016
1 parent b56d7af commit 2e5489b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "stdafx.h"
#pragma hdrstop

#include "xrXMLParser.h"
#include "XMLDocument.hpp"


XMLDocument::XMLDocument()
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/xrCore/xrCore.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@
<ClCompile Include="XML\tinyxml.cpp" />
<ClCompile Include="XML\tinyxmlerror.cpp" />
<ClCompile Include="XML\tinyxmlparser.cpp" />
<ClCompile Include="XML\xrXMLParser.cpp" />
<ClCompile Include="XML\XMLDocument.cpp" />
<ClCompile Include="xrCore.cpp" />
<ClCompile Include="ModuleLookup.cpp" />
<ClCompile Include="xrDebug.cpp" />
Expand Down Expand Up @@ -379,7 +379,7 @@
<ClInclude Include="vector.h" />
<ClInclude Include="XML\tinystr.h" />
<ClInclude Include="XML\tinyxml.h" />
<ClInclude Include="XML\xrXMLParser.h" />
<ClInclude Include="XML\XMLDocument.hpp" />
<ClInclude Include="xrCore.h" />
<ClInclude Include="ModuleLookup.hpp" />
<ClInclude Include="xrDebug.h" />
Expand Down
12 changes: 6 additions & 6 deletions src/xrCore/xrCore.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,6 @@
<ClCompile Include="Debug\StackTrace.cpp">
<Filter>Debug core</Filter>
</ClCompile>
<ClCompile Include="XML\xrXMLParser.cpp">
<Filter>XML</Filter>
</ClCompile>
<ClCompile Include="XML\tinystr.cpp">
<Filter>XML\TinyXML</Filter>
</ClCompile>
Expand All @@ -381,6 +378,9 @@
<ClCompile Include="XML\tinyxmlparser.cpp">
<Filter>XML\TinyXML</Filter>
</ClCompile>
<ClCompile Include="XML\XMLDocument.cpp">
<Filter>XML</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="FTimer.h">
Expand Down Expand Up @@ -794,15 +794,15 @@
<ClInclude Include="..\Common\Noncopyable.hpp">
<Filter>Common</Filter>
</ClInclude>
<ClInclude Include="XML\xrXMLParser.h">
<Filter>XML</Filter>
</ClInclude>
<ClInclude Include="XML\tinystr.h">
<Filter>XML\TinyXML</Filter>
</ClInclude>
<ClInclude Include="XML\tinyxml.h">
<Filter>XML\TinyXML</Filter>
</ClInclude>
<ClInclude Include="XML\XMLDocument.hpp">
<Filter>XML</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="xrCore.rc">
Expand Down
2 changes: 1 addition & 1 deletion src/xrGame/ui/xrUIXmlParser.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once
#include "xrCore/XML/xrXMLParser.h"
#include "xrCore/XML/XMLDocument.hpp"

class CUIXml : public XMLDocument
{
Expand Down

0 comments on commit 2e5489b

Please sign in to comment.