Skip to content

Commit

Permalink
Cosmetics: Fixes VS2012 syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
brianferguson committed Apr 5, 2013
1 parent d064d08 commit d0704a6
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Common/Gfx/Canvas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ void Canvas::Resize(int w, int h)
m_H = h;
}

} // namespace Gfx
} // namespace Gfx
2 changes: 1 addition & 1 deletion Common/Gfx/CanvasD2D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -452,4 +452,4 @@ void CanvasD2D::FillRectangle(Gdiplus::Rect& rect, const Gdiplus::SolidBrush& br
}
}

} // namespace Gfx
} // namespace Gfx
2 changes: 1 addition & 1 deletion Common/Gfx/CanvasGDIP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,4 +216,4 @@ void CanvasGDIP::FillRectangle(Gdiplus::Rect& rect, const Gdiplus::SolidBrush& b
m_Graphics->FillRectangle(&brush, rect);
}

} // namespace Gfx
} // namespace Gfx
2 changes: 1 addition & 1 deletion Common/Gfx/TextFormat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ void TextFormat::SetVerticalAlignment(VerticalAlignment alignment)
m_VerticalAlignment = alignment;
}

} // namespace Gfx
} // namespace Gfx
2 changes: 1 addition & 1 deletion Common/Gfx/TextFormatD2D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ void TextFormatD2D::SetVerticalAlignment(VerticalAlignment alignment)
}
}

} // namespace Gfx
} // namespace Gfx
2 changes: 1 addition & 1 deletion Common/Gfx/TextFormatGDIP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,4 @@ void TextFormatGDIP::SetVerticalAlignment(VerticalAlignment alignment)
m_StringFormat.SetLineAlignment((Gdiplus::StringAlignment)alignment);
}

} // namespace Gfx
} // namespace Gfx
2 changes: 1 addition & 1 deletion Common/Gfx/WICBitmapDIB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,4 @@ IFACEMETHODIMP WICBitmapDIB::SetResolution(double dpiX, double dpiY)
return E_NOTIMPL;
}

} // namespace Gfx
} // namespace Gfx
2 changes: 1 addition & 1 deletion Common/Gfx/WICBitmapLockDIB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ IFACEMETHODIMP WICBitmapLockDIB::GetPixelFormat(WICPixelFormatGUID* pPixelFormat
return m_Bitmap->GetPixelFormat(pPixelFormat);
}

} // namespace Gfx
} // namespace Gfx
2 changes: 1 addition & 1 deletion Common/Gfx/WICBitmapLockGDIP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ IFACEMETHODIMP WICBitmapLockGDIP::GetPixelFormat(WICPixelFormatGUID* pPixelForma
return S_OK;
}

} // namespace Gfx
} // namespace Gfx

0 comments on commit d0704a6

Please sign in to comment.