}
I have placed this snippet in appropriate places (_setProfile function, _profileChanged function etc ). But nothing seems to really work . Am I using the correct equality condition ? Can you help in this ?
2) How to setup a GtkEntryBuffer for the GtkEntries I have drwan for the artist ?
I wrote a small function:
char* getAdjustmentVal (GtkAdjustment *_adj)
{
gdouble _val=gtk_adjustment_get_value (_adj);
_val=100.00*_val;
guint _corrVal= _val;
char* arr;
itoa( _corrVal, arr, 10 );
return arr;
}