Ignore:
Timestamp:
07/04/19 18:54:23 (5 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Message:

Removed Gtk 2/3 constant definitions (re #347)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/statusbar.py

    r997 r999  
    4242
    4343        iconPath = os.path.join(iconDirectory, "conn_grey.png")
    44         self._connGreyIcon = pixbuf_new_from_file(iconPath)
     44        self._connGreyIcon = GdkPixbuf.Pixbuf.new_from_file(iconPath)
    4545
    4646        iconPath = os.path.join(iconDirectory, "conn_red.png")
    47         self._connRedIcon = pixbuf_new_from_file(iconPath)
     47        self._connRedIcon = GdkPixbuf.Pixbuf.new_from_file(iconPath)
    4848
    4949        iconPath = os.path.join(iconDirectory, "conn_green.png")
    50         self._connGreenIcon = pixbuf_new_from_file(iconPath)
     50        self._connGreenIcon = GdkPixbuf.Pixbuf.new_from_file(iconPath)
    5151
    5252        self._connStateArea = Gtk.DrawingArea()
Note: See TracChangeset for help on using the changeset viewer.