~ubuntu-branches/ubuntu/trusty/gabedit/trusty-proposed

« back to all changes in this revision

Viewing changes to src/Orca/OrcaBasis.c

  • Committer: Package Import Robot
  • Author(s): Daniel Leidert (dale)
  • Date: 2012-03-20 23:23:56 UTC
  • mfrom: (1.3.19)
  • Revision ID: package-import@ubuntu.com-20120320232356-40hlj06cauc6pm5o
Tags: 2.4.2-1
* New upstream release.
* debian/control: Used wrap-and-sort.
  (Standards-Version): Bumped to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* OrcaBasis.c */
2
2
/**********************************************************************************************************
3
 
Copyright (c) 2002-2011 Abdul-Rahman Allouche. All rights reserved
 
3
Copyright (c) 2002-2012 Abdul-Rahman Allouche. All rights reserved
4
4
 
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
6
6
documentation files (the Gabedit), to deal in the Software without restriction, including without limitation
1155
1155
        add_label_table(table,":",(gushort)i,1);
1156
1156
        entryBasis = addComboListToATable(table, listBasis, nlistBasis, i, 2, 1);
1157
1157
        comboBasis  = g_object_get_data(G_OBJECT (entryBasis), "Combo");
1158
 
        gtk_widget_set_sensitive(entryBasis, FALSE);
 
1158
        gtk_widget_set_sensitive(entryBasis, TRUE);
 
1159
        gtk_editable_set_editable(GTK_EDITABLE(entryBasis),FALSE);
1159
1160
 
1160
1161
        g_signal_connect(G_OBJECT(entryBasis),"changed", G_CALLBACK(changedEntryBasis),NULL);
1161
1162
        return comboBasis;
1175
1176
        if(comboExcited) g_object_set_data(G_OBJECT (comboExcited), "LabelAuxBasis2", label);
1176
1177
        entryAuxBasis = addComboListToATable(table, listAuxBasisView, numberOfAuxBasis, i, 2, 1);
1177
1178
        comboAuxBasis  = g_object_get_data(G_OBJECT (entryAuxBasis), "Combo");
1178
 
        gtk_widget_set_sensitive(entryAuxBasis, FALSE);
 
1179
        gtk_widget_set_sensitive(entryAuxBasis, TRUE);
 
1180
        gtk_editable_set_editable(GTK_EDITABLE(entryAuxBasis),FALSE);
1179
1181
        if(comboMethod) g_object_set_data(G_OBJECT (comboMethod), "ComboAuxBasis", comboAuxBasis);
1180
1182
        if(comboExcited) g_object_set_data(G_OBJECT (comboExcited), "ComboAuxBasis", comboAuxBasis);
1181
1183