Skip to content

Instantly share code, notes, and snippets.

View Therzok's full-sized avatar

Marius Ungureanu Therzok

View GitHub Profile
➜ monodevelop git:(master) ✗ grep --extended-regexp --recursive --line-number --include *.xml '[^.]<\/_?Description>' .
./main/external/fsharpbinding/MonoDevelop.FSharpBinding/Templates/FSharpNUnitLibraryProject.xpt.xml:10: <_Description>Creates an F# NUnit library</_Description>
./main/external/fsharpbinding/MonoDevelop.FSharpBinding/Templates/SharedAssetsProject.xpt.xml:12: <_Description>Creates a project that allows sharing files between projects</_Description>
./main/external/fsharpbinding/MonoDevelop.FSharpBinding/Templates/FSharp-templates.xml:9: <_Description>Creates boilerplate code for an agent</_Description>
./main/external/fsharpbinding/MonoDevelop.FSharpBinding/Templates/FSharp-templates.xml:36: <_Description>Creates an iOS outlet with attribute</_Description>
./main/external/fsharpbinding/MonoDevelop.FSharpBinding/Templates/FSharp-templates.xml:57: <_Description>Creates an iOS action with attribute</_Description>
./main/external/fsharpbinding/MonoDevelop.FSharpBinding/Templates
@Therzok
Therzok / ref.diff
Last active July 21, 2016 15:28
Gtk# Generator Change byref
diff --git b/atk/generated/NoOpObject.cs a/atk/generated/NoOpObject.cs
index 59dd220..5b99b26 100644
--- b/atk/generated/NoOpObject.cs
+++ a/atk/generated/NoOpObject.cs
@@ -948,54 +948,40 @@ namespace Atk {
}
[DllImport("libatk-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
- static extern void atk_value_get_minimum_value(IntPtr raw, IntPtr value);
+ static extern void atk_value_get_minimum_value(IntPtr raw, ref GLib.Value value);
diff --git b/atk/generated/AtkSharp.KeySnoopFuncNative.cs a/atk/generated/AtkSharp.KeySnoopFuncNative.cs
index c85953b..62b1716 100644
--- b/atk/generated/AtkSharp.KeySnoopFuncNative.cs
+++ a/atk/generated/AtkSharp.KeySnoopFuncNative.cs
@@ -44,7 +44,6 @@ namespace AtkSharp {
{
IntPtr native_evnt = GLib.Marshaller.StructureToPtrAlloc (evnt);
int result = native_cb (native_evnt, __data);
- evnt = Atk.KeyEventStruct.New (native_evnt);
Marshal.FreeHGlobal (native_evnt);
@Therzok
Therzok / .vimrc
Last active August 29, 2015 14:18
set nocompatible " be iMproved, required
filetype off " required
scriptencoding utf-8
set encoding=utf-8
set t_Co=256
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins