~mvo/software-center/update-sc-cmdline-flexibility

« back to all changes in this revision

Viewing changes to softwarecenter/view/widgets/imagedialog.py

  • Committer: Michael Vogt
  • Date: 2009-09-25 15:30:34 UTC
  • Revision ID: michael.vogt@ubuntu.com-20090925153034-vf6oqy9j66fc6jcz
renamed to "Ubuntu Software Center" and software-center (LP: #436648)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
import threading
25
25
import urllib
26
26
 
27
 
from softwarestore.enums import *
 
27
from softwarecenter.enums import *
28
28
 
29
29
class GnomeProxyURLopener(urllib.FancyURLopener):
30
30
    """A urllib.URLOpener that honors the gnome proxy settings"""
125
125
if __name__ == "__main__":
126
126
    pkgname = "synaptic"
127
127
    url = "http://screenshots.debian.net/screenshot/synaptic"
128
 
    loading = "/usr/share/icons/hicolor/32x32/animations/softwarestore-loading-installed.gif"
 
128
    loading = "/usr/share/icons/hicolor/32x32/animations/softwarecenter-loading-installed.gif"
129
129
    d = ShowImageDialog("Synaptic Screenshot", url, pkgname)
130
130
    d.run()