Fix in Merge.py for list handling

svn: r580
This commit is contained in:
Don Allingham 2001-11-24 21:56:31 +00:00
parent ad07469a59
commit 9fef706518
6 changed files with 5 additions and 8 deletions

View File

@ -104,6 +104,7 @@ class AbiWordDoc(TextDoc):
self.f.close() self.f.close()
def add_photo(self,pos,name,x_cm,y_cm): def add_photo(self,pos,name,x_cm,y_cm):
import gtk
import GdkImlib import GdkImlib
image = GdkImlib.Image(name) image = GdkImlib.Image(name)

View File

@ -30,6 +30,7 @@ import string
# GTK/Gnome modules # GTK/Gnome modules
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
import gtk
from gnome.ui import GnomeErrorDialog, GnomeWarningDialog, GnomeQuestionDialog from gnome.ui import GnomeErrorDialog, GnomeWarningDialog, GnomeQuestionDialog
import libglade import libglade
import GdkImlib import GdkImlib

View File

@ -230,6 +230,7 @@ class OpenOfficeDoc(TextDoc):
self._write_zip() self._write_zip()
def add_photo(self,name,pos,x_cm,y_cm): def add_photo(self,name,pos,x_cm,y_cm):
import gtk
import GdkImlib import GdkImlib
image = GdkImlib.Image(name) image = GdkImlib.Image(name)

View File

@ -31,6 +31,7 @@ import string
# GTK/Gnome modules # GTK/Gnome modules
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
import gtk
from gnome.ui import GnomeErrorDialog, GnomeWarningDialog from gnome.ui import GnomeErrorDialog, GnomeWarningDialog
#------------------------------------------------------------------------- #-------------------------------------------------------------------------

View File

@ -33,13 +33,6 @@ import os
from intl import gettext from intl import gettext
_ = gettext _ = gettext
#-------------------------------------------------------------------------
#
# GNOME/GTK
#
#-------------------------------------------------------------------------
from GdkImlib import create_image_from_xpm
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Paths to external programs # Paths to external programs

View File

@ -225,7 +225,7 @@ class Merge:
p2 = self.dellist[p2] p2 = self.dellist[p2]
if p1 == p2: if p1 == p2:
continue continue
list.append(c,p1,p2) list.append((c,p1,p2))
list.sort() list.sort()
list.reverse() list.reverse()