Update of /cvsroot/q-lang/qt-q/src
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15444/src
Modified Files:
smokeqt.i
Log Message:
fix 'deprecated conversion from string constant' warnings (gcc 4.2.1)
Index: smokeqt.i
===================================================================
RCS file: /cvsroot/q-lang/qt-q/src/smokeqt.i,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** smokeqt.i 8 Jan 2008 10:53:59 -0000 1.31
--- smokeqt.i 12 Mar 2008 11:03:53 -0000 1.32
***************
*** 2731,2736 ****
struct conv_entry {
! char *target; // target (C/C++) type (NULL = end of list)
! char *meth; // method name for special cases (NULL for any)
toc_func to_cval; // Q -> C/C++ (inputs)
fromc_func from_cval; // C/C++ -> Q (outputs and return values)
--- 2731,2736 ----
struct conv_entry {
! const char *target; // target (C/C++) type (NULL = end of list)
! const char *meth; // method name for special cases (NULL for any)
toc_func to_cval; // Q -> C/C++ (inputs)
fromc_func from_cval; // C/C++ -> Q (outputs and return values)
|