aboutsummaryrefslogtreecommitdiffstats
path: root/docbook
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2008-04-09 04:59:24 +0000
committerUlf Lamping <ulf.lamping@web.de>2008-04-09 04:59:24 +0000
commit2fb7887efc38f48995305b29ec3f0148460ea8d7 (patch)
tree984488084893a14888069a6857b6ae87af360ca4 /docbook
parent151c5b47b51adcaf4d8746162d680a5a4b4b67cc (diff)
remove GTK1 #if #else #endif from the dev guide
svn path=/trunk/; revision=24856
Diffstat (limited to 'docbook')
-rw-r--r--docbook/wsdg_src/WSDG_chapter_userinterface.xml22
1 files changed, 1 insertions, 21 deletions
diff --git a/docbook/wsdg_src/WSDG_chapter_userinterface.xml b/docbook/wsdg_src/WSDG_chapter_userinterface.xml
index c7bd760a3f..88f19a17e2 100644
--- a/docbook/wsdg_src/WSDG_chapter_userinterface.xml
+++ b/docbook/wsdg_src/WSDG_chapter_userinterface.xml
@@ -192,7 +192,7 @@
</section>
<section id="ChUIGTKCompat">
- <title>Compatibility between 1.x and 2.x</title>
+ <title>Compatibility GTK versions</title>
<para>
The GTK library itself defines some values which makes it easy to
distinguish between the versions, e.g.:
@@ -200,26 +200,6 @@
will be set to the GTK version at compile time somewhere inside the
gtk.h headers.
</para>
- <para>
- There are some common compatibility issues in Wireshark between the two
- versions.
- </para>
- <para>
- Most of them (the more simple ones) are collected in
- gtk/compat_macros.h and can be used in an version independent manner.
- </para>
- <para>
- However, there are major differences between the two versions, making
- it necessary to distinguish between them, like:
- <programlisting>
-<![CDATA[
-#if GTK_MAJOR_VERSION >= 2
- ...
-#else
- ...
-#endif]]>
-</programlisting>
- </para>
</section>
<section id="ChUIGTKWeb">