summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2007-01-16 20:14:20 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2007-01-16 20:14:20 +0000
commit0ee36da9691c2311d2134fd61f222ea3bed5827e (patch)
treee0f130ad7a7f1c3836f8ee2645abfea6727b22e5 /examples
parent80e647a8dbc97662b9d966c0f7a8e1aedea89eed (diff)
downloadpango-0ee36da9691c2311d2134fd61f222ea3bed5827e.tar.gz
Replace C++-style // comments with C-style /* */ ones.
2007-01-16 Behdad Esfahbod <behdad@gnome.org> * examples/pangowin32tobmp.c (SaveBitmap): * modules/tibetan/tibetan-fc.c: Replace C++-style // comments with C-style /* */ ones. svn path=/trunk/; revision=2164
Diffstat (limited to 'examples')
-rw-r--r--examples/pangowin32tobmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pangowin32tobmp.c b/examples/pangowin32tobmp.c
index ac95410b..bd80172b 100644
--- a/examples/pangowin32tobmp.c
+++ b/examples/pangowin32tobmp.c
@@ -376,7 +376,7 @@ SaveBitmap (HBITMAP hBmp, const char* pszFile)
*/
pbmi->bmiHeader.biClrImportant = 0;
- { // C sucks
+ { /* C sucks */
HANDLE hf; /* file handle */
BITMAPFILEHEADER hdr; /* bitmap file-header */
PBITMAPINFOHEADER pbih; /* bitmap info-header */
@@ -445,6 +445,6 @@ SaveBitmap (HBITMAP hBmp, const char* pszFile)
GlobalFree((HGLOBAL)pbmi);
DeleteDC(hDC);
- } // C sucks
+ } /* C sucks */
return TRUE;
}