diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-01-05 19:00:14 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-01-05 19:00:14 -0500 |
commit | 53b67b9a7209bf187c2609e15fcb4ee4ee127e53 (patch) | |
tree | 51a2162f654c17ad4d1c312d1cc6ce7fe13f98a3 /docs/reference/gtk/migrating-2to3.xml | |
parent | 2e064b337881a326dd84f78f115d74ceb3034eb9 (diff) | |
download | gtk+-53b67b9a7209bf187c2609e15fcb4ee4ee127e53.tar.gz |
Drop the G_SEAL definition from gdkconfig.h
All sealed members removed. Yay!
Diffstat (limited to 'docs/reference/gtk/migrating-2to3.xml')
-rw-r--r-- | docs/reference/gtk/migrating-2to3.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/reference/gtk/migrating-2to3.xml b/docs/reference/gtk/migrating-2to3.xml index a6f3ca8c36..70d9419f24 100644 --- a/docs/reference/gtk/migrating-2to3.xml +++ b/docs/reference/gtk/migrating-2to3.xml @@ -100,10 +100,11 @@ </para> <para> To ensure that your application does not have problems with this, you - define the preprocessor symbol <literal>GSEAL_ENABLE</literal>. This - will make the compiler catch all uses of direct access to struct fields - so that you can go through them one by one and replace them with a call - to an accessor function instead. + define the preprocessor symbol <literal>GSEAL_ENABLE</literal> while + building your application against GTK+ 2.x. This will make the compiler + catch all uses of direct access to struct fields so that you can go + through them one by one and replace them with a call to an accessor + function instead. <programlisting> make CFLAGS+="-DGSEAL_ENABLE" </programlisting> |