diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-01-16 20:14:20 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-01-16 20:14:20 +0000 |
commit | 0ee36da9691c2311d2134fd61f222ea3bed5827e (patch) | |
tree | e0f130ad7a7f1c3836f8ee2645abfea6727b22e5 /examples/pangowin32tobmp.c | |
parent | 80e647a8dbc97662b9d966c0f7a8e1aedea89eed (diff) | |
download | pango-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/pangowin32tobmp.c')
-rw-r--r-- | examples/pangowin32tobmp.c | 4 |
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; } |