[q-lang-cvs] qcalc qcalc.q,1.150,1.151
Brought to you by:
agraef
From: Albert G. <ag...@us...> - 2007-11-16 07:03:32
|
Update of /cvsroot/q-lang/qcalc In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20327 Modified Files: qcalc.q Log Message: revert change concerning cell alignment (looked awful) Index: qcalc.q =================================================================== RCS file: /cvsroot/q-lang/qcalc/qcalc.q,v retrieving revision 1.150 retrieving revision 1.151 diff -C2 -d -r1.150 -r1.151 *** qcalc.q 16 Nov 2007 06:45:42 -0000 1.150 --- qcalc.q 16 Nov 2007 07:03:28 -0000 1.151 *************** *** 49,54 **** // maximum entries in the recent files menu MAXFILES = 8, - // alignment of custom table items - ALIGNMENT = qt_val "Qt" "AlignAuto" or qt_val "Qt" "AlignTop", // create a connector object implementing the custom slots SLOTS = --- 49,52 ---- *************** *** 946,956 **** (if null DATA then [("createEditor",create_editor), ! ("setContentFromEditor",content_from_editor), ! ("alignment",alignment)] else []) [] []; - alignment _ _ _ = ALIGNMENT; - make_check_table_item (I,J,S|DATA) = qt TABLE "setItem" (I,J,IT) || --- 944,951 ---- (if null DATA then [("createEditor",create_editor), ! ("setContentFromEditor",content_from_editor)] else []) [] []; make_check_table_item (I,J,S|DATA) = qt TABLE "setItem" (I,J,IT) || |