diff options
author | Yaakov Selkowitz <[email protected]> | 2012-12-20 00:41:24 -0600 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-01-22 14:10:00 +0100 |
commit | 825c1dd01981c159368a1a7a99931146fbbe60f1 (patch) | |
tree | 13a781b2b2023d06a1d8fb52d600e71ff40f911a /examples/block-size-column.py | |
parent | 29149f504a4e5e28a19b92d9ebb831bb53100a01 (diff) | |
download | python-caja-825c1dd01981c159368a1a7a99931146fbbe60f1.tar.bz2 python-caja-825c1dd01981c159368a1a7a99931146fbbe60f1.tar.xz |
Port examples to g-i and gsettings
Diffstat (limited to 'examples/block-size-column.py')
-rw-r--r-- | examples/block-size-column.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/block-size-column.py b/examples/block-size-column.py index 6f94158..3fd64ce 100644 --- a/examples/block-size-column.py +++ b/examples/block-size-column.py @@ -1,17 +1,17 @@ import os import urllib -import caja +from gi.repository import GObject, Caja -class ColumnExtension(caja.ColumnProvider, caja.InfoProvider): +class ColumnExtension(GObject.GObject, Caja.ColumnProvider, Caja.InfoProvider): def __init__(self): pass def get_columns(self): - return caja.Column("CajaPython::block_size_column", - "block_size", - "Block size", - "Get the block size"), + return Caja.Column(name="CajaPython::block_size_column", + attribute="block_size", + label="Block size", + description="Get the block size"), def update_file_info(self, file): if file.get_uri_scheme() != 'file': |