Ouch!
change this
next = g_slist_next (node);
to
node = g_slist_next (node);
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list
Hi all,
I'm building an app with a TreeView with the selection mode set to
multiple. When i have to delete data from the tree view, i get a list of
selection with gtk_tree_selection_get_selected them i transform this
list into another list with GtkTreeRowReferences in it.
The deletion of the d
Guy Rouillier escribió:
> Razvan wrote:
>
>> Hi there
>>
>> I have the following problem:
>> I have a dynamic created table and at a moment I want to insert a whole row
>> into the table but I dont know how to do it. I dont want to re-create the
>> entire table. Is there any possibilies to do su
Hi all,
I'm using a spin button to enter float numbers. The default locale has
the ',' as decimal separator, but i want to also use the '.' as the
decimal separator. Is there a way to change this without changing the
locale?
Thanks in advance, matias
Tristan Van Berkom escribió:
> Matias Torres wrote:
>
>> Hi all!
>> Yes, I know it's not a GTK question but i couldn't find an answer to
>> my problem.
>>
>> After building my application (if it helps, it uses gtk), i use
>> gettext for t
Tristan Van Berkom escribió:
> Matias Torres wrote:
>
>> Hi all!
>> Yes, I know it's not a GTK question but i couldn't find an answer to
>> my problem.
>>
>> After building my application (if it helps, it uses gtk), i use
>> gettext for t
Hi all!
Yes, I know it's not a GTK question but i couldn't find an answer to my
problem.
After building my application (if it helps, it uses gtk), i use gettext
for translating it, and, in linux it works just fine. But, talking about
windows, well .. it doesn't..
Note: Gtk Widgets DO translate
Hi
I'm trying to make a widget that works just like the address bar in
epiphany (a combo box with completion)
The widget i'm workin on is a composite widget that uses
GtkComboBoxEntry and GtkEntryCompletion.
This widget has a unique gtktreemodel that both, GtkComboBoxEntry and
GtkEntryCompleti
I FORGOT ABOUT SOMETHING, I NEED THE LIBRARY TO BE PORTABLE TO WINDOWS.
THANKS!
**
hello,
i'm trying to make a curve based on some values passing a float array to
a GtkCurve:
gtk_curve_set_vector ( GTK_CURVE (income_curve), length, array)
This results in well.. not a curve, b
hello,
i'm trying to make a curve based on some values passing a float array to
a GtkCurve:
gtk_curve_set_vector ( GTK_CURVE (income_curve), length, array)
This results in well.. not a curve, but a number of straight lines like
this:
4
3
2 ___
ABOUT WEAK_REFERENCES
I can't get g_object_weak_ref working, this is the (full) example I've
tried it on. It tryes to free a GDate which is in a gtktreemodel.
//
#include
#include
#include
void weak_ref (gpointer data, GObject *object) {
g_date_free (data);
Thanks for answering. So basically...
(About the g_object_weak_ref)
GDate *date = g_date_new_dmy (1,1,2006);
GtkEntry *entry = gtk_entry_new ();
g_object_weak_ref (G_OBJECT (entry),
(GWeakNotify) g_date_free,
date);
After doing this
Hi all,
I'm working on some simple app which only use gtk and sqlite libraries
and i KNOW it's leaking memory.
Would you please help me? (damn beatles!, i shouldn't be listening music
when writing a mail!)
*- Is there a way to pass a function to free certain struct in a
GtkTreeModel so GTK fre
I had the same problem a few weeks ago. I modified a function i found in
a webpage (put koders in google), this is the fuction:
/*
* This function returns a GtkComboBox with a GtkEntryCompletion inside
instead a GtkEntry
* it needs a GtkTreeModel containing the data and the column used to
sea
14 matches
Mail list logo