~aw/tiamat/trunk

« back to all changes in this revision

Viewing changes to beholderlib/widgets/mainwindow/remoteconn.py

  • Committer: magnun.leno at gmail
  • Date: 2010-03-04 01:04:48 UTC
  • Revision ID: magnun.leno@gmail.com-20100304010448-grypfibeg7kor10m
Fixed some gliches in images global paths

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
import browsers
33
33
 
34
34
from os import sep as SEP
35
 
from beholderlib.hosts import GLOBAL_ICONS_PATH
36
 
CLOSE_ICON = GLOBAL_ICONS_PATH + '16x16' + SEP + 'tag-close.png'
37
 
STARTUP_IMG = GLOBAL_ICONS_PATH + 'dashboard.png'
 
35
from beholderlib import ICONS_PATH
 
36
CLOSE_ICON = ICONS_PATH + SEP + '16x16' + SEP + 'tag-close.png'
 
37
STARTUP_IMG = ICONS_PATH + SEP + 'dashboard.png'
38
38
 
39
39
class ConnNotebook(gtk.Notebook):
40
40
    def __init__(self):