Show
Ignore:
Timestamp:
08/03/08 18:31:56 (5 years ago)
Author:
nopper
Message:

Icons

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branch/PacketManipulator/Tabs/MainTab.py

    r3311 r3323  
    2626 
    2727from views import UmitView 
     28from Icons import get_pixbuf 
    2829 
    2930class ProtocolHierarchy(gtk.ScrolledWindow): 
     
    3536        self.__connect_signals() 
    3637 
    37         self.proto_icon = None 
     38        self.proto_icon = get_pixbuf('protocol_small') 
    3839 
    3940        root = None 
     
    4142        # We pray to be ordered :( 
    4243        for proto in Backend.get_packet_protos(packet): 
    43             root = self.store.append(root, [self.proto_icon, "blahh", proto]) 
     44            root = self.store.append(root, [self.proto_icon, Backend.get_proto_name(proto), proto]) 
    4445 
    4546    def __create_widgets(self):