summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1ec3401)
raw | patch | inline | side by side (parent: 1ec3401)
author | joncruz <joncruz@users.sourceforge.net> | |
Wed, 21 Mar 2007 23:57:13 +0000 (23:57 +0000) | ||
committer | joncruz <joncruz@users.sourceforge.net> | |
Wed, 21 Mar 2007 23:57:13 +0000 (23:57 +0000) |
src/ege-adjustment-action.cpp | patch | blob | history |
index abe021cf739b485381928442c22b55ed96e8fafd..2d303c63d6a21dfecf67711b697b1cef5759da87 100644 (file)
g_object_get_property( G_OBJECT(action), "tooltip", &tooltip );
const gchar* tipstr = g_value_get_string( &tooltip );
if ( tipstr && *tipstr ) {
- if ( !action->private_data->toolTips ) {
- action->private_data->toolTips = gtk_tooltips_new();
+ if ( !act->private_data->toolTips ) {
+ act->private_data->toolTips = gtk_tooltips_new();
}
- gtk_tooltips_set_tip( action->private_data->toolTips, spinbutton, tipstr, 0 );
+ gtk_tooltips_set_tip( act->private_data->toolTips, spinbutton, tipstr, 0 );
}
}