Mercurial > pidgin
annotate src/win32/StdAfx.h @ 5105:4cfc49e31c2e
[gaim-migrate @ 5468]
David Brigada (jsi) writes:
" This patch changes GTK_WRAP_WORD to GTK_WRAP_WORD_CHAR
throughout the sources. That fixes a bug where long
single-word input into GtkTextViews and similar would
cause the textview to expand, causing the window to
expand. This fix depends on a patch to GTK+ that is in
current CVS but not yet released. To address the
backwards-compatibility issue, GTK_WRAP_WORD_CHAR is
#defined to GTK_WRAP_WORD when not defined by GTK+'s
header files.
The only problem I can forsee is binary compatibility;
if Gaim is compiled under a GTK+ CVS (or a future
release) environment, and then run under a GTK+ 2.2.1
or earlier environment, behavior is undefined; the text
area will probably not wrap at all. However, source
compatibility is maintained."
basically, gaim will start wrapping text in any version of gtk2 that supports it,
and should work exactly the same in any version that still has the bug.
many thanks to David for his hard work.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Fri, 11 Apr 2003 04:23:55 +0000 |
parents | 9682c0e022c6 |
children |
rev | line source |
---|---|
3630 | 1 // stdafx.h : include file for standard system include files, |
2 // or project specific include files that are used frequently, but | |
3 // are changed infrequently | |
4 // | |
5 | |
6 #if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_) | |
7 #define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_ | |
8 | |
9 #if _MSC_VER > 1000 | |
10 #pragma once | |
11 #endif // _MSC_VER > 1000 | |
12 | |
13 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers | |
14 | |
15 #include <windows.h> | |
16 #include <shellapi.h> | |
17 | |
18 | |
19 // TODO: reference additional headers your program requires here | |
20 | |
21 //{{AFX_INSERT_LOCATION}} | |
22 // Microsoft Visual C++ will insert additional declarations immediately before the previous line. | |
23 | |
24 #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_) |