~ubuntu-branches/ubuntu/natty/gtk-sharp2/natty

« back to all changes in this revision

Viewing changes to atk/RowDeletedHandler.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-05-18 00:00:41 UTC
  • mfrom: (1.1.16 upstream) (13.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100518000041-tlgvki554jx6ndhi
Tags: 2.12.10-1
* New upstream release
* debian/rules:
  + Bump API version to 2.12.10
* debian/control:
  + Bump Standards to 3.8.4 (no changes needed)
* debian/source/format:
  + Force Debian source format 1.0
* debian/rules:
  + Write a get-orig-source rule
* debian/watch:
  + Get rid of evil "debian uupdate" line which breaks packaging work on
    Ubuntu
* debian/patches/01_dllmaps.dpatch:
  + Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// This file was auto-generated at one time, but is hardcoded here as part of the fix
 
2
// for the AtkTable interface;  see https://bugzilla.novell.com/show_bug.cgi?id=512477
 
3
// The generated code may have been modified as part of this fix; see atk-table.patch
 
4
 
 
5
namespace Atk {
 
6
 
 
7
        using System;
 
8
 
 
9
        public delegate void RowDeletedHandler(object o, RowDeletedArgs args);
 
10
 
 
11
        public class RowDeletedArgs : GLib.SignalArgs {
 
12
                public int Row{
 
13
                        get {
 
14
                                return (int) Args[0];
 
15
                        }
 
16
                }
 
17
 
 
18
                public int NumDeleted{
 
19
                        get {
 
20
                                return (int) Args[1];
 
21
                        }
 
22
                }
 
23
 
 
24
        }
 
25
}