Last change
on this file since 11709 was
11709,
checked in by jordan, 11 years ago
|
Update the copyright year in the source code comments.
The Berne Convention says that the copyright year is moot, so instead of adding another year to each file as in previous years, I've removed the year altogether from the source code comments in libtransmission, gtk, qt, utils, daemon, and cli.
Juliusz's copyright notice in tr-dht and Johannes' copyright notice in tr-lpd have been left alone; it didn't seem appropriate to modify them.
|
-
Property svn:keywords set to
Date Rev Author Id
|
File size:
1.2 KB
|
Rev | Line | |
---|
[4210] | 1 | /* |
---|
[11709] | 2 | * This file Copyright (C) Mnemosyne LLC |
---|
[4210] | 3 | * |
---|
[11599] | 4 | * This file is licensed by the GPL version 2. Works owned by the |
---|
[4210] | 5 | * Transmission project are granted a special exemption to clause 2(b) |
---|
[6795] | 6 | * so that the bulk of its code can remain under the MIT license. |
---|
[4210] | 7 | * This exemption does not extend to derived works not owned by |
---|
| 8 | * the Transmission project. |
---|
[6795] | 9 | * |
---|
| 10 | * $Id: torrent-cell-renderer.h 11709 2011-01-19 13:48:47Z jordan $ |
---|
[4210] | 11 | */ |
---|
| 12 | |
---|
[11563] | 13 | #ifndef GTR_TORRENT_CELL_RENDERER_H |
---|
| 14 | #define GTR_TORRENT_CELL_RENDERER_H |
---|
[4210] | 15 | |
---|
| 16 | #include <glib-object.h> |
---|
[6998] | 17 | #include <gtk/gtk.h> |
---|
[4210] | 18 | |
---|
[6795] | 19 | #define TORRENT_CELL_RENDERER_TYPE ( torrent_cell_renderer_get_type( ) ) |
---|
[4210] | 20 | |
---|
[6795] | 21 | #define TORRENT_CELL_RENDERER( o ) \ |
---|
| 22 | ( G_TYPE_CHECK_INSTANCE_CAST( ( o ), \ |
---|
| 23 | TORRENT_CELL_RENDERER_TYPE, \ |
---|
| 24 | TorrentCellRenderer ) ) |
---|
[4210] | 25 | |
---|
| 26 | typedef struct TorrentCellRenderer TorrentCellRenderer; |
---|
| 27 | |
---|
| 28 | typedef struct TorrentCellRendererClass TorrentCellRendererClass; |
---|
| 29 | |
---|
| 30 | struct TorrentCellRenderer |
---|
| 31 | { |
---|
[6795] | 32 | GtkCellRenderer parent; |
---|
| 33 | struct TorrentCellRendererPrivate * priv; |
---|
[4210] | 34 | }; |
---|
| 35 | |
---|
| 36 | struct TorrentCellRendererClass |
---|
| 37 | { |
---|
[6795] | 38 | GtkCellRendererClass parent; |
---|
[4210] | 39 | }; |
---|
| 40 | |
---|
[6795] | 41 | GType torrent_cell_renderer_get_type( void ); |
---|
[4210] | 42 | |
---|
| 43 | GtkCellRenderer * torrent_cell_renderer_new( void ); |
---|
| 44 | |
---|
[11563] | 45 | #endif /* GTR_TORRENT_CELL_RENDERER_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.