summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Finlay <finlay@src.gnome.org>2004-07-01 09:13:47 +0000
committerJohn Finlay <finlay@src.gnome.org>2004-07-01 09:13:47 +0000
commit617618a1cbbb47669f8b0026d3073165c01870e5 (patch)
treeea2c9e662fe2036c04d9f0018bd1f2d6e3dba42a
parentf79dbb86fd11df9ca9415dda094b7d7014a15ff4 (diff)
downloadpygtk-617618a1cbbb47669f8b0026d3073165c01870e5.tar.gz
pygtk-gtkcombobox.xml (Description) Fix typo. pygtk-introduction.xml Fix
* pygtk-gtkcombobox.xml (Description) Fix typo. * pygtk-introduction.xml Fix broken link * pygtk-gtkentrycompletion.xml Fix typo. Fixes #145239 thanks to Olav Vitters
-rw-r--r--docs/reference/ChangeLog7
-rw-r--r--docs/reference/pygtk-gtkcombobox.xml2
-rw-r--r--docs/reference/pygtk-gtkentrycompletion.xml2
-rw-r--r--docs/reference/pygtk-introduction.xml2
4 files changed, 10 insertions, 3 deletions
diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog
index 4065686f..65d67fc4 100644
--- a/docs/reference/ChangeLog
+++ b/docs/reference/ChangeLog
@@ -1,3 +1,10 @@
+2004-07-01 John Finlay <finlay@moeraki.com>
+
+ * pygtk-gtkcombobox.xml (Description) Fix typo.
+ * pygtk-introduction.xml Fix broken link
+ * pygtk-gtkentrycompletion.xml Fix typo.
+ Fixes #145239 thanks to Olav Vitters
+
2004-06-30 John Finlay <finlay@moeraki.com>
* pygtk-gtktreesortable.xml (Description)
diff --git a/docs/reference/pygtk-gtkcombobox.xml b/docs/reference/pygtk-gtkcombobox.xml
index 988ed9eb..d5844852 100644
--- a/docs/reference/pygtk-gtkcombobox.xml
+++ b/docs/reference/pygtk-gtkcombobox.xml
@@ -247,7 +247,7 @@ look like lists rather than menus.</entry>
function is equivalent to:</para>
<programlisting>
- liststore = gtk.Liststore(gobject.TYPE_STRING)
+ liststore = gtk.ListStore(gobject.TYPE_STRING)
combobox = gtk.ComboBox(liststore)
cell = gtk.CellRendererText()
combobox.pack_start(cell, gtk.TRUE)
diff --git a/docs/reference/pygtk-gtkentrycompletion.xml b/docs/reference/pygtk-gtkentrycompletion.xml
index d40301da..8d9b5527 100644
--- a/docs/reference/pygtk-gtkentrycompletion.xml
+++ b/docs/reference/pygtk-gtkentrycompletion.xml
@@ -218,7 +218,7 @@ something like:</para>
# 'text' attribute
completion.set_text_column(0)
# load up the liststore with string - pixbuf data - assuming pixbuf created
- ls.append(['string text', pixbuf])
+ liststore.append(['string text', pixbuf])
</programlisting>
<para>This will create an entry that will display a pixbuf and the text
diff --git a/docs/reference/pygtk-introduction.xml b/docs/reference/pygtk-introduction.xml
index a93d7a84..d09ad7f2 100644
--- a/docs/reference/pygtk-introduction.xml
+++ b/docs/reference/pygtk-introduction.xml
@@ -15,7 +15,7 @@ attempted to document as much of the <literal>PyGTK</literal>
omissions. If you discover any of these please send me email at
<email><ulink
url="mailto:finlay@moeraki.com">finlay@moeraki.com</ulink></email> or file a
-bug report at <ulink linkend="bugzilla.gnome.org">bugzilla.gnome.org</ulink>
+bug report at <ulink url="http://bugzilla.gnome.org">bugzilla.gnome.org</ulink>
for the <literal>pygtk</literal> project. Specific areas that have not been
documented include:</para>